pub struct SuperBlock {
pub size_of_offsets: u8,
pub size_of_lengths: u8,
pub base_address: u64,
pub end_of_file_address: u64,
pub root_group_object_header_address: u64,
pub superblock_extension_address: Option<u64>,
}Fields§
§size_of_offsets: u8§size_of_lengths: u8§base_address: u64§end_of_file_address: u64§root_group_object_header_address: u64§superblock_extension_address: Option<u64>Trait Implementations§
Source§impl Clone for SuperBlock
impl Clone for SuperBlock
Source§fn clone(&self) -> SuperBlock
fn clone(&self) -> SuperBlock
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 moreimpl Copy for SuperBlock
Auto Trait Implementations§
impl Freeze for SuperBlock
impl RefUnwindSafe for SuperBlock
impl Send for SuperBlock
impl Sync for SuperBlock
impl Unpin for SuperBlock
impl UnsafeUnpin for SuperBlock
impl UnwindSafe for SuperBlock
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