pub struct FileFork {
pub name: String,
pub storage_type: StorageType,
pub key_pointer: u16,
pub blocks_used: u16,
pub eof: u32,
}Fields§
§name: String§storage_type: StorageType§key_pointer: u16§blocks_used: u16§eof: u32Implementations§
Source§impl FileFork
impl FileFork
pub fn from_entry(entry: &DirectoryEntry) -> Self
pub fn new( name: impl Into<String>, storage_type: StorageType, key_pointer: u16, blocks_used: u16, eof: u32, ) -> Self
Trait Implementations§
impl Eq for FileFork
impl StructuralPartialEq for FileFork
Auto Trait Implementations§
impl Freeze for FileFork
impl RefUnwindSafe for FileFork
impl Send for FileFork
impl Sync for FileFork
impl Unpin for FileFork
impl UnsafeUnpin for FileFork
impl UnwindSafe for FileFork
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