pub enum GetServiceSettingError {
InternalServerError(String),
ServiceSettingNotFound(String),
}Expand description
Errors returned by GetServiceSetting
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.
Implementations§
Source§impl GetServiceSettingError
impl GetServiceSettingError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetServiceSettingError>
Trait Implementations§
Source§impl Debug for GetServiceSettingError
impl Debug for GetServiceSettingError
Source§impl Display for GetServiceSettingError
impl Display for GetServiceSettingError
Source§impl Error for GetServiceSettingError
impl Error for GetServiceSettingError
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 GetServiceSettingError
impl PartialEq for GetServiceSettingError
impl StructuralPartialEq for GetServiceSettingError
Auto Trait Implementations§
impl Freeze for GetServiceSettingError
impl RefUnwindSafe for GetServiceSettingError
impl Send for GetServiceSettingError
impl Sync for GetServiceSettingError
impl Unpin for GetServiceSettingError
impl UnwindSafe for GetServiceSettingError
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