pub enum PartitionSizeError {
TooSmall(u64, u64),
TooLarge(u64, u64),
}
Expand description
Indicates that a partition is either too small or too large.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PartitionSizeError
impl RefUnwindSafe for PartitionSizeError
impl Send for PartitionSizeError
impl Sync for PartitionSizeError
impl Unpin for PartitionSizeError
impl UnwindSafe for PartitionSizeError
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