pub struct Request { /* private fields */ }
Expand description
A request received from the FUSE kernel module.
Implementations§
Source§impl Request
impl Request
Sourcepub fn new(reader: impl RequestReader) -> Result<Self>
pub fn new(reader: impl RequestReader) -> Result<Self>
Create a new request from the specified data.
Sourcepub fn operation(&self) -> &FuseOperation
pub fn operation(&self) -> &FuseOperation
Gets the operation that this request should perform.
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more