pub enum InvalidResponse {
HGTPFrame(UnpackError),
ValueTag(ConvertValueError),
ValueDeser(Error),
Name(String255TooLongError),
Key(String255TooLongError),
Attribute(i64),
}
Variants§
HGTPFrame(UnpackError)
ValueTag(ConvertValueError)
ValueDeser(Error)
Name(String255TooLongError)
Key(String255TooLongError)
Attribute(i64)
Trait Implementations§
Source§impl Debug for InvalidResponse
impl Debug for InvalidResponse
Source§impl Display for InvalidResponse
impl Display for InvalidResponse
Source§impl Error for InvalidResponse
impl Error for InvalidResponse
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()
Source§impl From<ConvertValueError> for InvalidResponse
impl From<ConvertValueError> for InvalidResponse
Source§fn from(source: ConvertValueError) -> Self
fn from(source: ConvertValueError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for InvalidResponse
impl From<Error> for InvalidResponse
Source§impl From<InvalidResponse> for CallError
impl From<InvalidResponse> for CallError
Source§fn from(source: InvalidResponse) -> Self
fn from(source: InvalidResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidResponse
impl !RefUnwindSafe for InvalidResponse
impl Send for InvalidResponse
impl Sync for InvalidResponse
impl Unpin for InvalidResponse
impl !UnwindSafe for InvalidResponse
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