#[repr(C)]pub struct RootDirectoryEntry {
pub header: DirectoryRecordHeader,
pub padding: u8,
}Available on crate feature
sync only.Expand description
The root directory entry
Fields§
§header: DirectoryRecordHeaderThe header field.
padding: u8There is no name on the root directory, so this is always empty
Trait Implementations§
Source§impl Clone for RootDirectoryEntry
impl Clone for RootDirectoryEntry
Source§fn clone(&self) -> RootDirectoryEntry
fn clone(&self) -> RootDirectoryEntry
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 RootDirectoryEntry
Source§impl Debug for RootDirectoryEntry
impl Debug for RootDirectoryEntry
Source§impl Default for RootDirectoryEntry
impl Default for RootDirectoryEntry
Source§fn default() -> RootDirectoryEntry
fn default() -> RootDirectoryEntry
Returns the “default value” for a type. Read more
impl Pod for RootDirectoryEntry
Auto Trait Implementations§
impl Freeze for RootDirectoryEntry
impl RefUnwindSafe for RootDirectoryEntry
impl Send for RootDirectoryEntry
impl Sync for RootDirectoryEntry
impl Unpin for RootDirectoryEntry
impl UnsafeUnpin for RootDirectoryEntry
impl UnwindSafe for RootDirectoryEntry
Blanket Implementations§
impl<T> AnyBitPattern for Twhere
T: Pod,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.