#[repr(C)]pub struct FuseIoCtlOut {
pub result: i32,
pub flags: u32,
pub in_iovs: u32,
pub out_iovs: u32,
}Expand description
FUSE ioctl response fuse_ioctl_out
Fields§
§result: i32Result to be passed to the caller
flags: u32FUSE_IOCTL_* flags
in_iovs: u32iovec specifying data to fetch from the caller
out_iovs: u32iovec specifying addresses to write output to
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuseIoCtlOut
impl RefUnwindSafe for FuseIoCtlOut
impl Send for FuseIoCtlOut
impl Sync for FuseIoCtlOut
impl Unpin for FuseIoCtlOut
impl UnwindSafe for FuseIoCtlOut
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