pub enum ZoneExtentError {
InvalidExtent,
}Expand description
Errors returned by zone-extent validation.
Variants§
InvalidExtent
Trait Implementations§
Source§impl Clone for ZoneExtentError
impl Clone for ZoneExtentError
Source§fn clone(&self) -> ZoneExtentError
fn clone(&self) -> ZoneExtentError
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 ZoneExtentError
impl Debug for ZoneExtentError
Source§impl Display for ZoneExtentError
impl Display for ZoneExtentError
Source§impl Error for ZoneExtentError
impl Error for ZoneExtentError
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 PartialEq for ZoneExtentError
impl PartialEq for ZoneExtentError
impl Copy for ZoneExtentError
impl Eq for ZoneExtentError
impl StructuralPartialEq for ZoneExtentError
Auto Trait Implementations§
impl Freeze for ZoneExtentError
impl RefUnwindSafe for ZoneExtentError
impl Send for ZoneExtentError
impl Sync for ZoneExtentError
impl Unpin for ZoneExtentError
impl UnsafeUnpin for ZoneExtentError
impl UnwindSafe for ZoneExtentError
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