pub enum ResetServiceSettingError {
InternalServerError(String),
ServiceSettingNotFound(String),
TooManyUpdates(String),
}Expand description
Errors returned by ResetServiceSetting
Variants§
InternalServerError(String)
An error occurred on the server side.
ServiceSettingNotFound(String)
The specified service setting was not found. Either the service name or the setting has not been provisioned by the AWS service team.
TooManyUpdates(String)
There are concurrent updates for a resource that supports one update at a time.
Implementations§
Source§impl ResetServiceSettingError
impl ResetServiceSettingError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ResetServiceSettingError>
Trait Implementations§
Source§impl Debug for ResetServiceSettingError
impl Debug for ResetServiceSettingError
Source§impl Display for ResetServiceSettingError
impl Display for ResetServiceSettingError
Source§impl Error for ResetServiceSettingError
impl Error for ResetServiceSettingError
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 ResetServiceSettingError
impl PartialEq for ResetServiceSettingError
impl StructuralPartialEq for ResetServiceSettingError
Auto Trait Implementations§
impl Freeze for ResetServiceSettingError
impl RefUnwindSafe for ResetServiceSettingError
impl Send for ResetServiceSettingError
impl Sync for ResetServiceSettingError
impl Unpin for ResetServiceSettingError
impl UnwindSafe for ResetServiceSettingError
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