#[repr(C)]pub struct lfs_file {
pub next: *mut lfs_file,
pub id: u16,
pub type_: u8,
pub m: lfs_mdir_t,
pub ctz: lfs_file_lfs_ctz,
pub flags: u32,
pub pos: lfs_off_t,
pub block: lfs_block_t,
pub off: lfs_off_t,
pub cache: lfs_cache_t,
pub cfg: *const lfs_file_config,
}Fields§
§next: *mut lfs_file§id: u16§type_: u8§m: lfs_mdir_t§ctz: lfs_file_lfs_ctz§flags: u32§pos: lfs_off_t§block: lfs_block_t§off: lfs_off_t§cache: lfs_cache_t§cfg: *const lfs_file_configTrait Implementations§
impl Copy for lfs_file
Auto Trait Implementations§
impl Freeze for lfs_file
impl RefUnwindSafe for lfs_file
impl !Send for lfs_file
impl !Sync for lfs_file
impl Unpin for lfs_file
impl UnwindSafe for lfs_file
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