pub enum SeerError {
CanNotPushAtMaximumCapacity,
QueueError(QueueError),
}Variants§
CanNotPushAtMaximumCapacity
QueueError(QueueError)
Trait Implementations§
Source§impl ErrorLevelProvider for SeerError
impl ErrorLevelProvider for SeerError
fn error_level(&self) -> ErrorLevel
Source§impl From<QueueError> for SeerError
impl From<QueueError> for SeerError
Source§fn from(error: QueueError) -> Self
fn from(error: QueueError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SeerError
impl RefUnwindSafe for SeerError
impl Send for SeerError
impl Sync for SeerError
impl Unpin for SeerError
impl UnwindSafe for SeerError
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