pub struct FileIdentifierDescriptor {
pub tag: DescriptorTag,
pub file_version_number: u16,
pub file_characteristics: u8,
pub identifier: String,
pub icb: LongAd,
pub total_size: usize,
}Fields§
§tag: DescriptorTag§file_version_number: u16§file_characteristics: u8§identifier: String§icb: LongAd§total_size: usizeTotal padded size of the FID record on disc (§14.4.9: round up to the next 4-byte boundary).
Implementations§
Trait Implementations§
Source§impl Clone for FileIdentifierDescriptor
impl Clone for FileIdentifierDescriptor
Source§fn clone(&self) -> FileIdentifierDescriptor
fn clone(&self) -> FileIdentifierDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FileIdentifierDescriptor
impl RefUnwindSafe for FileIdentifierDescriptor
impl Send for FileIdentifierDescriptor
impl Sync for FileIdentifierDescriptor
impl Unpin for FileIdentifierDescriptor
impl UnsafeUnpin for FileIdentifierDescriptor
impl UnwindSafe for FileIdentifierDescriptor
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