#[repr(C)]pub struct lfs_file {
pub next: *mut lfs_file,
pub pair: [lfs_block_t; 2],
pub poff: lfs_off_t,
pub head: lfs_block_t,
pub size: lfs_size_t,
pub cfg: *const lfs_file_config,
pub flags: u32,
pub pos: lfs_off_t,
pub block: lfs_block_t,
pub off: lfs_off_t,
pub cache: lfs_cache_t,
}Fields§
§next: *mut lfs_file§pair: [lfs_block_t; 2]§poff: lfs_off_t§head: lfs_block_t§size: lfs_size_t§cfg: *const lfs_file_config§flags: u32§pos: lfs_off_t§block: lfs_block_t§off: lfs_off_t§cache: lfs_cache_tTrait Implementations§
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