pub enum ListResourcesError {
InvalidNextToken(String),
ProjectNotFound(String),
}
Expand description
Errors returned by ListResources
Variants§
InvalidNextToken(String)
The next token is not valid.
ProjectNotFound(String)
The specified AWS CodeStar project was not found.
Implementations§
Source§impl ListResourcesError
impl ListResourcesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListResourcesError>
Trait Implementations§
Source§impl Debug for ListResourcesError
impl Debug for ListResourcesError
Source§impl Display for ListResourcesError
impl Display for ListResourcesError
Source§impl Error for ListResourcesError
impl Error for ListResourcesError
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 ListResourcesError
impl PartialEq for ListResourcesError
impl StructuralPartialEq for ListResourcesError
Auto Trait Implementations§
impl Freeze for ListResourcesError
impl RefUnwindSafe for ListResourcesError
impl Send for ListResourcesError
impl Sync for ListResourcesError
impl Unpin for ListResourcesError
impl UnwindSafe for ListResourcesError
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