pub enum CopyError {
NoSuchKey,
OutOfMemory,
}Expand description
Error returned by COPY.
Variants§
NoSuchKey
The source key does not exist.
OutOfMemory
Memory limit reached and eviction couldn’t free enough space.
Trait Implementations§
impl Eq for CopyError
impl StructuralPartialEq for CopyError
Auto Trait Implementations§
impl Freeze for CopyError
impl RefUnwindSafe for CopyError
impl Send for CopyError
impl Sync for CopyError
impl Unpin for CopyError
impl UnsafeUnpin for CopyError
impl UnwindSafe for CopyError
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