pub enum MetaClientError {
CreateTransportError(Error),
LoadError(NonthrowingFunctionError),
SpaceNotFoundError(Vec<u8>),
TagNotFoundError(Vec<u8>),
EdgeNotFoundError(Vec<u8>),
PartNotFoundError(i32),
}
Expand description
A custom error type for meta client operations.
Variants§
CreateTransportError(Error)
LoadError(NonthrowingFunctionError)
SpaceNotFoundError(Vec<u8>)
TagNotFoundError(Vec<u8>)
EdgeNotFoundError(Vec<u8>)
PartNotFoundError(i32)
Trait Implementations§
source§impl Debug for MetaClientError
impl Debug for MetaClientError
source§impl Display for MetaClientError
impl Display for MetaClientError
source§impl Error for MetaClientError
impl Error for MetaClientError
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()
Auto Trait Implementations§
impl Freeze for MetaClientError
impl !RefUnwindSafe for MetaClientError
impl Send for MetaClientError
impl Sync for MetaClientError
impl Unpin for MetaClientError
impl !UnwindSafe for MetaClientError
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