pub enum DBOperationError {
Show 23 variants
KeyAllreadyPresent,
KeyNotFound,
NodeNotLink,
NodeNotData,
SerializeError,
FSError,
ParseError,
FileNotFound,
FilePermissionDenied,
NetworkConnectionRefused,
NetworkConnectionReset,
NetworkNotConnected,
NetworkAddressInUse,
NetworkAddrNotAvailable,
BrokenPipe,
FileAlreadyExists,
WouldBlock,
InvalidInput,
InvalidData,
TimedOut,
Interrupted,
Other,
UnexpectedEof,
}Variants§
KeyAllreadyPresent
KeyNotFound
NodeNotLink
NodeNotData
SerializeError
FSError
ParseError
FileNotFound
FilePermissionDenied
NetworkConnectionRefused
NetworkConnectionReset
NetworkNotConnected
NetworkAddressInUse
NetworkAddrNotAvailable
BrokenPipe
FileAlreadyExists
WouldBlock
InvalidInput
InvalidData
TimedOut
Interrupted
Other
UnexpectedEof
Trait Implementations§
Source§impl Clone for DBOperationError
impl Clone for DBOperationError
Source§fn clone(&self) -> DBOperationError
fn clone(&self) -> DBOperationError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Display for DBOperationError
impl Display for DBOperationError
Source§impl From<Error> for DBOperationError
impl From<Error> for DBOperationError
Source§impl From<Error> for DBOperationError
impl From<Error> for DBOperationError
Source§impl From<SerializeError> for DBOperationError
impl From<SerializeError> for DBOperationError
Source§fn from(error: SerializeError) -> Self
fn from(error: SerializeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DBOperationError
impl RefUnwindSafe for DBOperationError
impl Send for DBOperationError
impl Sync for DBOperationError
impl Unpin for DBOperationError
impl UnwindSafe for DBOperationError
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