pub enum UpdateTeamMemberError {
ConcurrentModification(String),
InvalidServiceRole(String),
LimitExceeded(String),
ProjectConfiguration(String),
ProjectNotFound(String),
TeamMemberNotFound(String),
}
Expand description
Errors returned by UpdateTeamMember
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.
TeamMemberNotFound(String)
The specified team member was not found.
Implementations§
Source§impl UpdateTeamMemberError
impl UpdateTeamMemberError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateTeamMemberError>
Trait Implementations§
Source§impl Debug for UpdateTeamMemberError
impl Debug for UpdateTeamMemberError
Source§impl Display for UpdateTeamMemberError
impl Display for UpdateTeamMemberError
Source§impl Error for UpdateTeamMemberError
impl Error for UpdateTeamMemberError
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 UpdateTeamMemberError
impl PartialEq for UpdateTeamMemberError
impl StructuralPartialEq for UpdateTeamMemberError
Auto Trait Implementations§
impl Freeze for UpdateTeamMemberError
impl RefUnwindSafe for UpdateTeamMemberError
impl Send for UpdateTeamMemberError
impl Sync for UpdateTeamMemberError
impl Unpin for UpdateTeamMemberError
impl UnwindSafe for UpdateTeamMemberError
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