pub enum DescribeProjectError {
ConcurrentModification(String),
InvalidServiceRole(String),
ProjectConfiguration(String),
ProjectNotFound(String),
}
Expand description
Errors returned by DescribeProject
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.
ProjectConfiguration(String)
Project configuration information is required but not specified.
ProjectNotFound(String)
The specified AWS CodeStar project was not found.
Implementations§
Source§impl DescribeProjectError
impl DescribeProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeProjectError>
Trait Implementations§
Source§impl Debug for DescribeProjectError
impl Debug for DescribeProjectError
Source§impl Display for DescribeProjectError
impl Display for DescribeProjectError
Source§impl Error for DescribeProjectError
impl Error for DescribeProjectError
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 DescribeProjectError
impl PartialEq for DescribeProjectError
impl StructuralPartialEq for DescribeProjectError
Auto Trait Implementations§
impl Freeze for DescribeProjectError
impl RefUnwindSafe for DescribeProjectError
impl Send for DescribeProjectError
impl Sync for DescribeProjectError
impl Unpin for DescribeProjectError
impl UnwindSafe for DescribeProjectError
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