pub enum GetPipelineExecutionError {
PipelineExecutionNotFound(String),
PipelineNotFound(String),
}
Expand description
Errors returned by GetPipelineExecution
Variants§
PipelineExecutionNotFound(String)
The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.
PipelineNotFound(String)
The pipeline was specified in an invalid format or cannot be found.
Implementations§
Source§impl GetPipelineExecutionError
impl GetPipelineExecutionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetPipelineExecutionError>
Trait Implementations§
Source§impl Debug for GetPipelineExecutionError
impl Debug for GetPipelineExecutionError
Source§impl Display for GetPipelineExecutionError
impl Display for GetPipelineExecutionError
Source§impl Error for GetPipelineExecutionError
impl Error for GetPipelineExecutionError
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()
impl StructuralPartialEq for GetPipelineExecutionError
Auto Trait Implementations§
impl Freeze for GetPipelineExecutionError
impl RefUnwindSafe for GetPipelineExecutionError
impl Send for GetPipelineExecutionError
impl Sync for GetPipelineExecutionError
impl Unpin for GetPipelineExecutionError
impl UnwindSafe for GetPipelineExecutionError
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