pub enum ListPresetsError {
AccessDenied(String),
IncompatibleVersion(String),
InternalService(String),
}
Expand description
Errors returned by ListPresets
Variants§
AccessDenied(String)
General authentication failure. The request was not signed correctly.
IncompatibleVersion(String)
InternalService(String)
Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.
Implementations§
Source§impl ListPresetsError
impl ListPresetsError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListPresetsError>
Trait Implementations§
Source§impl Debug for ListPresetsError
impl Debug for ListPresetsError
Source§impl Display for ListPresetsError
impl Display for ListPresetsError
Source§impl Error for ListPresetsError
impl Error for ListPresetsError
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 ListPresetsError
impl PartialEq for ListPresetsError
impl StructuralPartialEq for ListPresetsError
Auto Trait Implementations§
impl Freeze for ListPresetsError
impl RefUnwindSafe for ListPresetsError
impl Send for ListPresetsError
impl Sync for ListPresetsError
impl Unpin for ListPresetsError
impl UnwindSafe for ListPresetsError
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