pub enum AddPartitionError {
InvalidArguments,
NoSpace,
}
Variants§
Trait Implementations§
Source§impl Clone for AddPartitionError
impl Clone for AddPartitionError
Source§fn clone(&self) -> AddPartitionError
fn clone(&self) -> AddPartitionError
Returns a copy 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 AddPartitionError
impl Debug for AddPartitionError
Source§impl Display for AddPartitionError
impl Display for AddPartitionError
Source§impl Error for AddPartitionError
impl Error for AddPartitionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<AddPartitionError> for Status
impl From<AddPartitionError> for Status
Source§fn from(error: AddPartitionError) -> Status
fn from(error: AddPartitionError) -> Status
Converts to this type from the input type.
Source§impl PartialEq for AddPartitionError
impl PartialEq for AddPartitionError
impl Eq for AddPartitionError
impl StructuralPartialEq for AddPartitionError
Auto Trait Implementations§
impl Freeze for AddPartitionError
impl RefUnwindSafe for AddPartitionError
impl Send for AddPartitionError
impl Sync for AddPartitionError
impl Unpin for AddPartitionError
impl UnwindSafe for AddPartitionError
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