pub enum UpdateGlobalTableError {
GlobalTableNotFound(String),
InternalServerError(String),
ReplicaAlreadyExists(String),
ReplicaNotFound(String),
TableNotFound(String),
}
Expand description
Errors returned by UpdateGlobalTable
Variants§
GlobalTableNotFound(String)
The specified global table does not exist.
InternalServerError(String)
An error occurred on the server side.
ReplicaAlreadyExists(String)
The specified replica is already part of the global table.
ReplicaNotFound(String)
The specified replica is no longer part of the global table.
TableNotFound(String)
A source table with the name TableName
does not currently exist within the subscriber's account.
Implementations§
Source§impl UpdateGlobalTableError
impl UpdateGlobalTableError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateGlobalTableError>
Trait Implementations§
Source§impl Debug for UpdateGlobalTableError
impl Debug for UpdateGlobalTableError
Source§impl Display for UpdateGlobalTableError
impl Display for UpdateGlobalTableError
Source§impl Error for UpdateGlobalTableError
impl Error for UpdateGlobalTableError
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 UpdateGlobalTableError
impl PartialEq for UpdateGlobalTableError
impl StructuralPartialEq for UpdateGlobalTableError
Auto Trait Implementations§
impl Freeze for UpdateGlobalTableError
impl RefUnwindSafe for UpdateGlobalTableError
impl Send for UpdateGlobalTableError
impl Sync for UpdateGlobalTableError
impl Unpin for UpdateGlobalTableError
impl UnwindSafe for UpdateGlobalTableError
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