[−][src]Struct btrfs_diskformat::DevItem
Represents a complete block device.
Fields
devid: U64<LE>The internal btrfs device ID.
This should match the devid found in the filesystem's list of devices.
total_bytes: U64<LE>The size of the device.
bytes_used: U64<LE>The bytes in use by the filesystem on the device.
io_align: U32<LE>The optimal I/O alignment for this device.
io_width: U32<LE>The optimal I/O width for this device.
sector_size: U32<LE>The minimum I/O size for this device.
type: U64<LE>The type and info for this device.
generation: U64<LE>The expected generation for this device.
start_offset: U64<LE>The starting byte of this partition on the device, to allow for stripe alignment.
dev_group: U32<LE>Grouping information for allocation decisions.
seek_speed: u8The seek speed of the device on a scale from 0 to 100, where 100 is the fastest.
bandwith: u8The bandwidth of the device on a scale from 0 to 100, where 100 is the fastest.
uuid: UuidBytesThe generated UUID for this device.
fsid: UuidBytesThe UUID of the filesystem that owns this device.
Trait Implementations
impl AsBytes for DevItem[src]
pub fn only_derive_is_allowed_to_implement_this_trait() where
Self: Sized, [src]
Self: Sized,
pub fn as_bytes(&self) -> &[u8][src]
pub fn as_bytes_mut(&mut self) -> &mut [u8] where
Self: FromBytes, [src]
Self: FromBytes,
impl Clone for DevItem[src]
impl Copy for DevItem[src]
impl Debug for DevItem[src]
impl FromBytes for DevItem[src]
pub fn only_derive_is_allowed_to_implement_this_trait() where
Self: Sized, [src]
Self: Sized,
impl Unaligned for DevItem[src]
pub fn only_derive_is_allowed_to_implement_this_trait() where
Self: Sized, [src]
Self: Sized,
Auto Trait Implementations
impl RefUnwindSafe for DevItem[src]
impl Send for DevItem[src]
impl Sync for DevItem[src]
impl Unpin for DevItem[src]
impl UnwindSafe for DevItem[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,