#[repr(C)]pub struct fuse_init_out {
pub major: u32,
pub minor: u32,
pub max_readahead: u32,
pub flags: u32,
pub max_background: u16,
pub congestion_threshold: u16,
pub max_write: u32,
pub time_gran: u32,
pub max_pages: u16,
pub padding: u16,
pub unused: [u32; 8],
}
Fields§
§major: u32
§minor: u32
§max_readahead: u32
§flags: u32
§max_background: u16
§congestion_threshold: u16
§max_write: u32
§time_gran: u32
§max_pages: u16
§padding: u16
§unused: [u32; 8]
Trait Implementations§
Source§impl AsBytes for fuse_init_out
impl AsBytes for fuse_init_out
Source§impl Clone for fuse_init_out
impl Clone for fuse_init_out
Source§fn clone(&self) -> fuse_init_out
fn clone(&self) -> fuse_init_out
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for fuse_init_out
impl Default for fuse_init_out
impl Copy for fuse_init_out
impl FromBytes for fuse_init_out
Auto Trait Implementations§
impl Freeze for fuse_init_out
impl RefUnwindSafe for fuse_init_out
impl Send for fuse_init_out
impl Sync for fuse_init_out
impl Unpin for fuse_init_out
impl UnwindSafe for fuse_init_out
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