Struct btrfs_diskformat::RootBackup[][src]

#[repr(C, packed)]pub struct RootBackup {
    pub tree_root: U64<LE>,
    pub tree_root_gen: U64<LE>,
    pub chunk_root: U64<LE>,
    pub chunk_root_gen: U64<LE>,
    pub extent_root: U64<LE>,
    pub extent_root_gen: U64<LE>,
    pub fs_root: U64<LE>,
    pub fs_root_gen: U64<LE>,
    pub dev_root: U64<LE>,
    pub dev_root_gen: U64<LE>,
    pub csum_root: U64<LE>,
    pub csum_root_gen: U64<LE>,
    pub total_bytes: U64<LE>,
    pub bytes_used: U64<LE>,
    pub num_devices: U64<LE>,
    pub _unused_u64s: [U64<LE>; 4],
    pub tree_root_level: u8,
    pub chunk_root_level: u8,
    pub extent_root_level: u8,
    pub fs_root_level: u8,
    pub dev_root_level: u8,
    pub csum_root_level: u8,
    pub _unused_u8s: [u8; 10],
}

Fields

tree_root: U64<LE>tree_root_gen: U64<LE>chunk_root: U64<LE>chunk_root_gen: U64<LE>extent_root: U64<LE>extent_root_gen: U64<LE>fs_root: U64<LE>fs_root_gen: U64<LE>dev_root: U64<LE>dev_root_gen: U64<LE>csum_root: U64<LE>csum_root_gen: U64<LE>total_bytes: U64<LE>bytes_used: U64<LE>num_devices: U64<LE>_unused_u64s: [U64<LE>; 4]

Reserved for future use.

tree_root_level: u8chunk_root_level: u8extent_root_level: u8fs_root_level: u8dev_root_level: u8csum_root_level: u8_unused_u8s: [u8; 10]

Reserved for future use.

Trait Implementations

impl AsBytes for RootBackup[src]

impl Clone for RootBackup[src]

impl Copy for RootBackup[src]

impl Debug for RootBackup[src]

impl FromBytes for RootBackup[src]

impl Unaligned for RootBackup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.