#[repr(C)]pub struct FuseIoCtlIn {
pub fh: u64,
pub flags: u32,
pub cmd: u32,
pub arg: u64,
pub in_size: u32,
pub out_size: u32,
}Expand description
FUSE ioctl request input fuse_ioctl_in
Fields§
§fh: u64File handler
flags: u32FUSE ioctl flags
cmd: u32FUSE ioctl command
arg: u64FUSE ioctl command argument
in_size: u32The number of fetched bytes
out_size: u32The maximum size of output data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuseIoCtlIn
impl RefUnwindSafe for FuseIoCtlIn
impl Send for FuseIoCtlIn
impl Sync for FuseIoCtlIn
impl Unpin for FuseIoCtlIn
impl UnwindSafe for FuseIoCtlIn
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