pub struct ChunkStripe {
pub devid: u64,
pub offset: u64,
pub dev_uuid: Uuid,
}Expand description
A single physical stripe within a chunk.
Fields§
§devid: u64Device ID where this stripe lives.
offset: u64Physical byte offset on the device.
dev_uuid: UuidUUID of the device.
Trait Implementations§
Source§impl Clone for ChunkStripe
impl Clone for ChunkStripe
Source§fn clone(&self) -> ChunkStripe
fn clone(&self) -> ChunkStripe
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ChunkStripe
impl RefUnwindSafe for ChunkStripe
impl Send for ChunkStripe
impl Sync for ChunkStripe
impl Unpin for ChunkStripe
impl UnsafeUnpin for ChunkStripe
impl UnwindSafe for ChunkStripe
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