pub enum ListExecutionsError {
InvalidArn(String),
InvalidToken(String),
StateMachineDoesNotExist(String),
StateMachineTypeNotSupported(String),
}
Expand description
Errors returned by ListExecutions
Variants§
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
InvalidToken(String)
The provided token is invalid.
StateMachineDoesNotExist(String)
The specified state machine does not exist.
StateMachineTypeNotSupported(String)
Implementations§
Source§impl ListExecutionsError
impl ListExecutionsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListExecutionsError>
Trait Implementations§
Source§impl Debug for ListExecutionsError
impl Debug for ListExecutionsError
Source§impl Display for ListExecutionsError
impl Display for ListExecutionsError
Source§impl Error for ListExecutionsError
impl Error for ListExecutionsError
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 ListExecutionsError
impl PartialEq for ListExecutionsError
impl StructuralPartialEq for ListExecutionsError
Auto Trait Implementations§
impl Freeze for ListExecutionsError
impl RefUnwindSafe for ListExecutionsError
impl Send for ListExecutionsError
impl Sync for ListExecutionsError
impl Unpin for ListExecutionsError
impl UnwindSafe for ListExecutionsError
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