pub struct FsLimits {
pub max_name_bytes: u32,
pub max_read: u32,
pub max_write: u32,
pub max_file_size: u64,
}Expand description
Exported filesystem limits.
Fields§
§max_name_bytes: u32Maximum object name length in bytes.
max_read: u32Maximum read size the backend wants to advertise.
max_write: u32Maximum write size the backend wants to advertise.
max_file_size: u64Maximum regular file size in bytes.
Trait Implementations§
impl Copy for FsLimits
impl Eq for FsLimits
impl StructuralPartialEq for FsLimits
Auto Trait Implementations§
impl Freeze for FsLimits
impl RefUnwindSafe for FsLimits
impl Send for FsLimits
impl Sync for FsLimits
impl Unpin for FsLimits
impl UnsafeUnpin for FsLimits
impl UnwindSafe for FsLimits
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