pub enum BatchGetDeploymentsError {
BatchLimitExceeded(String),
DeploymentIdRequired(String),
InvalidDeploymentId(String),
}
Expand description
Errors returned by BatchGetDeployments
Variants§
BatchLimitExceeded(String)
The maximum number of names or IDs allowed for this request (100) was exceeded.
DeploymentIdRequired(String)
At least one deployment ID must be specified.
InvalidDeploymentId(String)
At least one of the deployment IDs was specified in an invalid format.
Implementations§
Source§impl BatchGetDeploymentsError
impl BatchGetDeploymentsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<BatchGetDeploymentsError>
Trait Implementations§
Source§impl Debug for BatchGetDeploymentsError
impl Debug for BatchGetDeploymentsError
Source§impl Display for BatchGetDeploymentsError
impl Display for BatchGetDeploymentsError
Source§impl Error for BatchGetDeploymentsError
impl Error for BatchGetDeploymentsError
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 BatchGetDeploymentsError
impl PartialEq for BatchGetDeploymentsError
impl StructuralPartialEq for BatchGetDeploymentsError
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentsError
impl RefUnwindSafe for BatchGetDeploymentsError
impl Send for BatchGetDeploymentsError
impl Sync for BatchGetDeploymentsError
impl Unpin for BatchGetDeploymentsError
impl UnwindSafe for BatchGetDeploymentsError
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