pub enum DeleteConfigurationSetTrackingOptionsError {
ConfigurationSetDoesNotExist(String),
TrackingOptionsDoesNotExist(String),
}Expand description
Errors returned by DeleteConfigurationSetTrackingOptions
Variants§
ConfigurationSetDoesNotExist(String)
Indicates that the configuration set does not exist.
TrackingOptionsDoesNotExist(String)
Indicates that the TrackingOptions object you specified does not exist.
Implementations§
Trait Implementations§
Source§impl Error for DeleteConfigurationSetTrackingOptionsError
impl Error for DeleteConfigurationSetTrackingOptionsError
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 DeleteConfigurationSetTrackingOptionsError
impl PartialEq for DeleteConfigurationSetTrackingOptionsError
Source§fn eq(&self, other: &DeleteConfigurationSetTrackingOptionsError) -> bool
fn eq(&self, other: &DeleteConfigurationSetTrackingOptionsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteConfigurationSetTrackingOptionsError
Auto Trait Implementations§
impl Freeze for DeleteConfigurationSetTrackingOptionsError
impl RefUnwindSafe for DeleteConfigurationSetTrackingOptionsError
impl Send for DeleteConfigurationSetTrackingOptionsError
impl Sync for DeleteConfigurationSetTrackingOptionsError
impl Unpin for DeleteConfigurationSetTrackingOptionsError
impl UnwindSafe for DeleteConfigurationSetTrackingOptionsError
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