pub enum TagProjectError {
ConcurrentModification(String),
LimitExceeded(String),
ProjectNotFound(String),
}
Expand description
Errors returned by TagProject
Variants§
ConcurrentModification(String)
Another modification is being made. That modification must complete before you can make your change.
LimitExceeded(String)
A resource limit has been exceeded.
ProjectNotFound(String)
The specified AWS CodeStar project was not found.
Implementations§
Source§impl TagProjectError
impl TagProjectError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<TagProjectError>
Trait Implementations§
Source§impl Debug for TagProjectError
impl Debug for TagProjectError
Source§impl Display for TagProjectError
impl Display for TagProjectError
Source§impl Error for TagProjectError
impl Error for TagProjectError
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 TagProjectError
impl PartialEq for TagProjectError
impl StructuralPartialEq for TagProjectError
Auto Trait Implementations§
impl Freeze for TagProjectError
impl RefUnwindSafe for TagProjectError
impl Send for TagProjectError
impl Sync for TagProjectError
impl Unpin for TagProjectError
impl UnwindSafe for TagProjectError
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