pub enum BatchGetRepositoriesError {
EncryptionIntegrityChecksFailed(String),
EncryptionKeyAccessDenied(String),
EncryptionKeyDisabled(String),
EncryptionKeyNotFound(String),
EncryptionKeyUnavailable(String),
InvalidRepositoryName(String),
MaximumRepositoryNamesExceeded(String),
RepositoryNamesRequired(String),
}Expand description
Errors returned by BatchGetRepositories
Variants§
EncryptionIntegrityChecksFailed(String)
An encryption integrity check failed.
EncryptionKeyAccessDenied(String)
An encryption key could not be accessed.
EncryptionKeyDisabled(String)
The encryption key is disabled.
EncryptionKeyNotFound(String)
No encryption key was found.
The encryption key is not available.
InvalidRepositoryName(String)
A specified repository name is not valid.
This exception occurs only when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.
MaximumRepositoryNamesExceeded(String)
The maximum number of allowed repository names was exceeded. Currently, this number is 100.
RepositoryNamesRequired(String)
At least one repository name object is required, but was not specified.
Implementations§
Source§impl BatchGetRepositoriesError
impl BatchGetRepositoriesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<BatchGetRepositoriesError>
Trait Implementations§
Source§impl Debug for BatchGetRepositoriesError
impl Debug for BatchGetRepositoriesError
Source§impl Display for BatchGetRepositoriesError
impl Display for BatchGetRepositoriesError
Source§impl Error for BatchGetRepositoriesError
impl Error for BatchGetRepositoriesError
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()
impl StructuralPartialEq for BatchGetRepositoriesError
Auto Trait Implementations§
impl Freeze for BatchGetRepositoriesError
impl RefUnwindSafe for BatchGetRepositoriesError
impl Send for BatchGetRepositoriesError
impl Sync for BatchGetRepositoriesError
impl Unpin for BatchGetRepositoriesError
impl UnwindSafe for BatchGetRepositoriesError
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