pub struct PlacementHint {
pub cohort_bucket: i64,
}Expand description
Placement hint for FDP (Flexible Data Placement, NVMe 2.0) backends.
The cohort_bucket maps to an FDP placement handle, allowing
cohort-aware data placement on supported hardware.
Fields§
§cohort_bucket: i64Cohort bucket mapped to an FDP placement handle.
Trait Implementations§
Source§impl Clone for PlacementHint
impl Clone for PlacementHint
Source§fn clone(&self) -> PlacementHint
fn clone(&self) -> PlacementHint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PlacementHint
Auto Trait Implementations§
impl Freeze for PlacementHint
impl RefUnwindSafe for PlacementHint
impl Send for PlacementHint
impl Sync for PlacementHint
impl Unpin for PlacementHint
impl UnsafeUnpin for PlacementHint
impl UnwindSafe for PlacementHint
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