Enum golem_client::account::DeleteAccountError
source · pub enum DeleteAccountError {
RequestFailure(Error),
InvalidHeaderValue(InvalidHeaderValue),
UnexpectedStatus(StatusCode),
Status404 {
message: String,
},
Status400 {
errors: Vec<String>,
},
Status500 {
error: String,
},
}
Variants§
RequestFailure(Error)
InvalidHeaderValue(InvalidHeaderValue)
UnexpectedStatus(StatusCode)
Status404
Status400
Status500
Implementations§
source§impl DeleteAccountError
impl DeleteAccountError
pub fn to_account_endpoint_error(&self) -> Option<AccountEndpointError>
Trait Implementations§
source§impl From<Error> for DeleteAccountError
impl From<Error> for DeleteAccountError
source§fn from(error: Error) -> DeleteAccountError
fn from(error: Error) -> DeleteAccountError
Converts to this type from the input type.
source§impl From<InvalidHeaderValue> for DeleteAccountError
impl From<InvalidHeaderValue> for DeleteAccountError
source§fn from(error: InvalidHeaderValue) -> DeleteAccountError
fn from(error: InvalidHeaderValue) -> DeleteAccountError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for DeleteAccountError
impl Send for DeleteAccountError
impl Sync for DeleteAccountError
impl Unpin for DeleteAccountError
impl !UnwindSafe for DeleteAccountError
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