pub enum AssociateTeamMemberError {
ConcurrentModification(String),
InvalidServiceRole(String),
LimitExceeded(String),
ProjectConfiguration(String),
ProjectNotFound(String),
TeamMemberAlreadyAssociated(String),
}
Expand description
Errors returned by AssociateTeamMember
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.
LimitExceeded(String)
A resource limit has been exceeded.
ProjectConfiguration(String)
Project configuration information is required but not specified.
ProjectNotFound(String)
The specified AWS CodeStar project was not found.
TeamMemberAlreadyAssociated(String)
The team member is already associated with a role in this project.
Implementations§
Source§impl AssociateTeamMemberError
impl AssociateTeamMemberError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AssociateTeamMemberError>
Trait Implementations§
Source§impl Debug for AssociateTeamMemberError
impl Debug for AssociateTeamMemberError
Source§impl Display for AssociateTeamMemberError
impl Display for AssociateTeamMemberError
Source§impl Error for AssociateTeamMemberError
impl Error for AssociateTeamMemberError
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 AssociateTeamMemberError
impl PartialEq for AssociateTeamMemberError
impl StructuralPartialEq for AssociateTeamMemberError
Auto Trait Implementations§
impl Freeze for AssociateTeamMemberError
impl RefUnwindSafe for AssociateTeamMemberError
impl Send for AssociateTeamMemberError
impl Sync for AssociateTeamMemberError
impl Unpin for AssociateTeamMemberError
impl UnwindSafe for AssociateTeamMemberError
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