pub enum VersioningError {
InvalidChannel {
channel: String,
reason: String,
},
InvalidSequence {
version: Version,
channel: String,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for VersioningError
impl Clone for VersioningError
Source§fn clone(&self) -> VersioningError
fn clone(&self) -> VersioningError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VersioningError
impl Debug for VersioningError
Source§impl Display for VersioningError
impl Display for VersioningError
impl Eq for VersioningError
Source§impl Error for VersioningError
impl Error for VersioningError
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<VersioningError> for DomainError
impl From<VersioningError> for DomainError
Source§fn from(source: VersioningError) -> Self
fn from(source: VersioningError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VersioningError
impl PartialEq for VersioningError
impl StructuralPartialEq for VersioningError
Auto Trait Implementations§
impl Freeze for VersioningError
impl RefUnwindSafe for VersioningError
impl Send for VersioningError
impl Sync for VersioningError
impl Unpin for VersioningError
impl UnsafeUnpin for VersioningError
impl UnwindSafe for VersioningError
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