pub enum ListBuildsForProjectError {
InvalidInput(String),
ResourceNotFound(String),
}
Expand description
Errors returned by ListBuildsForProject
Variants§
InvalidInput(String)
The input value that was provided is not valid.
ResourceNotFound(String)
The specified AWS resource cannot be found.
Implementations§
Source§impl ListBuildsForProjectError
impl ListBuildsForProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListBuildsForProjectError>
Trait Implementations§
Source§impl Debug for ListBuildsForProjectError
impl Debug for ListBuildsForProjectError
Source§impl Display for ListBuildsForProjectError
impl Display for ListBuildsForProjectError
Source§impl Error for ListBuildsForProjectError
impl Error for ListBuildsForProjectError
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 ListBuildsForProjectError
Auto Trait Implementations§
impl Freeze for ListBuildsForProjectError
impl RefUnwindSafe for ListBuildsForProjectError
impl Send for ListBuildsForProjectError
impl Sync for ListBuildsForProjectError
impl Unpin for ListBuildsForProjectError
impl UnwindSafe for ListBuildsForProjectError
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