pub enum UpdateLedgerError {
InvalidParameter(String),
ResourceNotFound(String),
}Expand description
Errors returned by UpdateLedger
Variants§
InvalidParameter(String)
One or more parameters in the request aren't valid.
ResourceNotFound(String)
The specified resource doesn't exist.
Implementations§
Source§impl UpdateLedgerError
impl UpdateLedgerError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateLedgerError>
Trait Implementations§
Source§impl Debug for UpdateLedgerError
impl Debug for UpdateLedgerError
Source§impl Display for UpdateLedgerError
impl Display for UpdateLedgerError
Source§impl Error for UpdateLedgerError
impl Error for UpdateLedgerError
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 UpdateLedgerError
impl PartialEq for UpdateLedgerError
impl StructuralPartialEq for UpdateLedgerError
Auto Trait Implementations§
impl Freeze for UpdateLedgerError
impl RefUnwindSafe for UpdateLedgerError
impl Send for UpdateLedgerError
impl Sync for UpdateLedgerError
impl Unpin for UpdateLedgerError
impl UnwindSafe for UpdateLedgerError
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