pub enum IngestError {
AuthenticationError {
message: Option<String>,
client: Box<IngestClient<UnauthenticatedState>>,
},
ProtocolError(&'static str),
CborEncode(Error<Error>),
CborDecode(Error),
Timeout(Elapsed),
AttrKeyNaming,
Io(Error),
}Variants
AuthenticationError
ProtocolError(&'static str)
CborEncode(Error<Error>)
CborDecode(Error)
Timeout(Elapsed)
AttrKeyNaming
Io(Error)
Trait Implementations
sourceimpl Debug for IngestError
impl Debug for IngestError
sourceimpl Display for IngestError
impl Display for IngestError
sourceimpl Error for IngestError
impl Error for IngestError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<Elapsed> for IngestError
impl From<Elapsed> for IngestError
sourceimpl From<Error<Error>> for IngestError
impl From<Error<Error>> for IngestError
sourceimpl From<Error> for IngestError
impl From<Error> for IngestError
sourceimpl From<Error> for IngestError
impl From<Error> for IngestError
sourceimpl From<IngestError> for DynamicIngestError
impl From<IngestError> for DynamicIngestError
sourcefn from(source: IngestError) -> Self
fn from(source: IngestError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for IngestError
impl Send for IngestError
impl Sync for IngestError
impl Unpin for IngestError
impl !UnwindSafe for IngestError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more