pub enum DisassociateTeamMemberError {
ConcurrentModification(String),
InvalidServiceRole(String),
ProjectNotFound(String),
}
Expand description
Errors returned by DisassociateTeamMember
Variants§
ConcurrentModification(String)
Another modification is being made. That modification must complete before you can make your change.
InvalidServiceRole(String)
The service role is not valid.
ProjectNotFound(String)
The specified AWS CodeStar project was not found.
Implementations§
Source§impl DisassociateTeamMemberError
impl DisassociateTeamMemberError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DisassociateTeamMemberError>
Trait Implementations§
Source§impl Debug for DisassociateTeamMemberError
impl Debug for DisassociateTeamMemberError
Source§impl Error for DisassociateTeamMemberError
impl Error for DisassociateTeamMemberError
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 DisassociateTeamMemberError
Auto Trait Implementations§
impl Freeze for DisassociateTeamMemberError
impl RefUnwindSafe for DisassociateTeamMemberError
impl Send for DisassociateTeamMemberError
impl Sync for DisassociateTeamMemberError
impl Unpin for DisassociateTeamMemberError
impl UnwindSafe for DisassociateTeamMemberError
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