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