pub enum LRUError {
Map(MapError),
LinkedList(LinkedListError),
LayoutMismatch,
IoError(ErrorKind),
}Variants§
Trait Implementations§
impl Copy for LRUError
impl Eq for LRUError
Source§impl From<LinkedListError> for LRUError
impl From<LinkedListError> for LRUError
Source§fn from(e: LinkedListError) -> Self
fn from(e: LinkedListError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for LRUError
Auto Trait Implementations§
impl Freeze for LRUError
impl RefUnwindSafe for LRUError
impl Send for LRUError
impl Sync for LRUError
impl Unpin for LRUError
impl UnsafeUnpin for LRUError
impl UnwindSafe for LRUError
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