pub enum DeleteLedgerError {
InvalidParameter(String),
ResourceInUse(String),
ResourceNotFound(String),
ResourcePreconditionNotMet(String),
}Expand description
Errors returned by DeleteLedger
Variants§
InvalidParameter(String)
One or more parameters in the request aren't valid.
ResourceInUse(String)
The specified resource can't be modified at this time.
ResourceNotFound(String)
The specified resource doesn't exist.
ResourcePreconditionNotMet(String)
The operation failed because a condition wasn't satisfied in advance.
Implementations§
Source§impl DeleteLedgerError
impl DeleteLedgerError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteLedgerError>
Trait Implementations§
Source§impl Debug for DeleteLedgerError
impl Debug for DeleteLedgerError
Source§impl Display for DeleteLedgerError
impl Display for DeleteLedgerError
Source§impl Error for DeleteLedgerError
impl Error for DeleteLedgerError
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 PartialEq for DeleteLedgerError
impl PartialEq for DeleteLedgerError
impl StructuralPartialEq for DeleteLedgerError
Auto Trait Implementations§
impl Freeze for DeleteLedgerError
impl RefUnwindSafe for DeleteLedgerError
impl Send for DeleteLedgerError
impl Sync for DeleteLedgerError
impl Unpin for DeleteLedgerError
impl UnwindSafe for DeleteLedgerError
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