#[repr(C)]pub struct ext4_file {
pub mp: *mut ext4_mountpoint,
pub inode: u32,
pub flags: u32,
pub fsize: u64,
pub fpos: u64,
}Expand description
@brief File descriptor.
Fields§
§mp: *mut ext4_mountpoint@brief Mount point handle.
inode: u32@brief File inode id.
flags: u32@brief Open flags.
fsize: u64@brief File size.
fpos: u64@brief Actual file position.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ext4_file
impl RefUnwindSafe for ext4_file
impl !Send for ext4_file
impl !Sync for ext4_file
impl Unpin for ext4_file
impl UnwindSafe for ext4_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