pub enum DefragmentationPriority {
Low,
Normal,
High,
Critical,
}Expand description
Defragmentation priority levels
Variants§
Trait Implementations§
Source§impl Clone for DefragmentationPriority
impl Clone for DefragmentationPriority
Source§fn clone(&self) -> DefragmentationPriority
fn clone(&self) -> DefragmentationPriority
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 moreSource§impl Debug for DefragmentationPriority
impl Debug for DefragmentationPriority
Source§impl Ord for DefragmentationPriority
impl Ord for DefragmentationPriority
Source§fn cmp(&self, other: &DefragmentationPriority) -> Ordering
fn cmp(&self, other: &DefragmentationPriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DefragmentationPriority
impl PartialEq for DefragmentationPriority
Source§impl PartialOrd for DefragmentationPriority
impl PartialOrd for DefragmentationPriority
impl Copy for DefragmentationPriority
impl Eq for DefragmentationPriority
impl StructuralPartialEq for DefragmentationPriority
Auto Trait Implementations§
impl Freeze for DefragmentationPriority
impl RefUnwindSafe for DefragmentationPriority
impl Send for DefragmentationPriority
impl Sync for DefragmentationPriority
impl Unpin for DefragmentationPriority
impl UnsafeUnpin for DefragmentationPriority
impl UnwindSafe for DefragmentationPriority
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more