pub enum GetAccountEndpointError {
SerResponseBodyFailed(SerdeJsonError),
MakeRequestFailed(HttpError),
DeResponseBodyFailed(SerdeJsonError),
}
Variants§
SerResponseBodyFailed(SerdeJsonError)
MakeRequestFailed(HttpError)
DeResponseBodyFailed(SerdeJsonError)
Trait Implementations§
Source§impl Debug for GetAccountEndpointError
impl Debug for GetAccountEndpointError
Source§impl Display for GetAccountEndpointError
impl Display for GetAccountEndpointError
Source§impl Error for GetAccountEndpointError
impl Error for GetAccountEndpointError
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()
Source§impl From<GetAccountEndpointError> for EndpointParseResponseError
impl From<GetAccountEndpointError> for EndpointParseResponseError
Source§fn from(err: GetAccountEndpointError) -> Self
fn from(err: GetAccountEndpointError) -> Self
Converts to this type from the input type.
Source§impl From<GetAccountEndpointError> for EndpointRenderRequestError
impl From<GetAccountEndpointError> for EndpointRenderRequestError
Source§fn from(err: GetAccountEndpointError) -> Self
fn from(err: GetAccountEndpointError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetAccountEndpointError
impl !RefUnwindSafe for GetAccountEndpointError
impl Send for GetAccountEndpointError
impl Sync for GetAccountEndpointError
impl Unpin for GetAccountEndpointError
impl !UnwindSafe for GetAccountEndpointError
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