Struct btrfs_diskformat::DevExtent[][src]

#[repr(C, packed)]pub struct DevExtent {
    pub chunk_tree: U64<LE>,
    pub chunk_objectid: U64<LE>,
    pub chunk_offset: U64<LE>,
    pub length: U64<LE>,
    pub chunk_tree_uuid: UuidBytes,
}

Maps physical extents on an individual backing device to a chunk. This extent may be the only one for a particular chunk or one of several.

It is associated with the DEV_ITEM item. This structure is never used outside of this item.

Fields

chunk_tree: U64<LE>

The object ID of the chunk tree that owns this extent.

chunk_objectid: U64<LE>

The object ID of the chunk item that references this extent.

chunk_offset: U64<LE>

The offset of the chunk item that references this extent.

length: U64<LE>

The length of this extent, in bytes.

chunk_tree_uuid: UuidBytes

The UUID of the chunk tree that owns this extent.

Trait Implementations

impl AsBytes for DevExtent[src]

impl Clone for DevExtent[src]

impl Debug for DevExtent[src]

impl FromBytes for DevExtent[src]

impl Unaligned for DevExtent[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.