pub enum PartialOrderError {
StoreError(String),
}Expand description
Error types which may be returned from PartialOrder methods.
Variants§
Trait Implementations§
Source§impl Debug for PartialOrderError
impl Debug for PartialOrderError
Source§impl Display for PartialOrderError
impl Display for PartialOrderError
Source§impl Error for PartialOrderError
impl Error for PartialOrderError
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<PartialOrderError> for OperationDependencyCheckerError
impl From<PartialOrderError> for OperationDependencyCheckerError
Source§fn from(source: PartialOrderError) -> Self
fn from(source: PartialOrderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PartialOrderError
impl RefUnwindSafe for PartialOrderError
impl Send for PartialOrderError
impl Sync for PartialOrderError
impl Unpin for PartialOrderError
impl UnwindSafe for PartialOrderError
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