pub enum CountAccountSummaryError {
RequestFailure(Error),
InvalidHeaderValue(InvalidHeaderValue),
UnexpectedStatus(StatusCode),
Status500 {
error: String,
},
}
Variants§
RequestFailure(Error)
InvalidHeaderValue(InvalidHeaderValue)
UnexpectedStatus(StatusCode)
Status500
Implementations§
source§impl CountAccountSummaryError
impl CountAccountSummaryError
pub fn to_account_summary_endpoint_error( &self ) -> Option<AccountSummaryEndpointError>
Trait Implementations§
source§impl From<Error> for CountAccountSummaryError
impl From<Error> for CountAccountSummaryError
source§fn from(error: Error) -> CountAccountSummaryError
fn from(error: Error) -> CountAccountSummaryError
Converts to this type from the input type.
source§impl From<InvalidHeaderValue> for CountAccountSummaryError
impl From<InvalidHeaderValue> for CountAccountSummaryError
source§fn from(error: InvalidHeaderValue) -> CountAccountSummaryError
fn from(error: InvalidHeaderValue) -> CountAccountSummaryError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CountAccountSummaryError
impl Send for CountAccountSummaryError
impl Sync for CountAccountSummaryError
impl Unpin for CountAccountSummaryError
impl !UnwindSafe for CountAccountSummaryError
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