#[repr(C)]pub struct fuse_args {
pub argc: c_int,
pub argv: *mut *mut c_char,
pub allocated: c_int,
}Expand description
Argument list
Fields§
§argc: c_intArgument count
argv: *mut *mut c_charArgument vector. NULL terminated
allocated: c_intIs ‘argv’ allocated?
Trait Implementations§
Auto Trait Implementations§
impl Freeze for fuse_args
impl RefUnwindSafe for fuse_args
impl !Send for fuse_args
impl !Sync for fuse_args
impl Unpin for fuse_args
impl UnwindSafe for fuse_args
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