pub enum GetPipelineError {
PipelineNotFound(String),
PipelineVersionNotFound(String),
}
Expand description
Errors returned by GetPipeline
Variants§
PipelineNotFound(String)
The pipeline was specified in an invalid format or cannot be found.
PipelineVersionNotFound(String)
The pipeline version was specified in an invalid format or cannot be found.
Implementations§
Source§impl GetPipelineError
impl GetPipelineError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetPipelineError>
Trait Implementations§
Source§impl Debug for GetPipelineError
impl Debug for GetPipelineError
Source§impl Display for GetPipelineError
impl Display for GetPipelineError
Source§impl Error for GetPipelineError
impl Error for GetPipelineError
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 GetPipelineError
impl PartialEq for GetPipelineError
impl StructuralPartialEq for GetPipelineError
Auto Trait Implementations§
impl Freeze for GetPipelineError
impl RefUnwindSafe for GetPipelineError
impl Send for GetPipelineError
impl Sync for GetPipelineError
impl Unpin for GetPipelineError
impl UnwindSafe for GetPipelineError
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