#[repr(C, packed(1))]pub struct btrfs_chunk {
pub length: __le64,
pub owner: __le64,
pub stripe_len: __le64,
pub type_: __le64,
pub io_align: __le32,
pub io_width: __le32,
pub sector_size: __le32,
pub num_stripes: __le16,
pub sub_stripes: __le16,
pub stripe: btrfs_stripe,
}
Fields§
§length: __le64
§owner: __le64
§stripe_len: __le64
§type_: __le64
§io_align: __le32
§io_width: __le32
§sector_size: __le32
§num_stripes: __le16
§sub_stripes: __le16
§stripe: btrfs_stripe
Trait Implementations§
Source§impl Clone for btrfs_chunk
impl Clone for btrfs_chunk
Source§fn clone(&self) -> btrfs_chunk
fn clone(&self) -> btrfs_chunk
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for btrfs_chunk
impl Debug for btrfs_chunk
impl Copy for btrfs_chunk
Auto Trait Implementations§
impl Freeze for btrfs_chunk
impl RefUnwindSafe for btrfs_chunk
impl Send for btrfs_chunk
impl Sync for btrfs_chunk
impl Unpin for btrfs_chunk
impl UnwindSafe for btrfs_chunk
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