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