#[non_exhaustive]
pub enum ManagementPreference {
AwsManagedResources(AwsManagedResources),
NoPreference(NoManagementPreference),
SelfManageResources(SelfManageResources),
Unknown,
}Expand description
Preferences for migrating an application to AWS.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AwsManagedResources(AwsManagedResources)
Indicates interest in solutions that are managed by AWS.
NoPreference(NoManagementPreference)
No specific preference.
SelfManageResources(SelfManageResources)
Indicates interest in managing your own resources on AWS.
Unknown
The Unknown variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations
sourceimpl ManagementPreference
impl ManagementPreference
sourcepub fn as_aws_managed_resources(&self) -> Result<&AwsManagedResources, &Self>
pub fn as_aws_managed_resources(&self) -> Result<&AwsManagedResources, &Self>
Tries to convert the enum instance into AwsManagedResources, extracting the inner AwsManagedResources.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_aws_managed_resources(&self) -> bool
pub fn is_aws_managed_resources(&self) -> bool
Returns true if this is a AwsManagedResources.
sourcepub fn as_no_preference(&self) -> Result<&NoManagementPreference, &Self>
pub fn as_no_preference(&self) -> Result<&NoManagementPreference, &Self>
Tries to convert the enum instance into NoPreference, extracting the inner NoManagementPreference.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_no_preference(&self) -> bool
pub fn is_no_preference(&self) -> bool
Returns true if this is a NoPreference.
sourcepub fn as_self_manage_resources(&self) -> Result<&SelfManageResources, &Self>
pub fn as_self_manage_resources(&self) -> Result<&SelfManageResources, &Self>
Tries to convert the enum instance into SelfManageResources, extracting the inner SelfManageResources.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_self_manage_resources(&self) -> bool
pub fn is_self_manage_resources(&self) -> bool
Returns true if this is a SelfManageResources.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown variant.
Trait Implementations
sourceimpl Clone for ManagementPreference
impl Clone for ManagementPreference
sourcefn clone(&self) -> ManagementPreference
fn clone(&self) -> ManagementPreference
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ManagementPreference
impl Debug for ManagementPreference
sourceimpl PartialEq<ManagementPreference> for ManagementPreference
impl PartialEq<ManagementPreference> for ManagementPreference
sourcefn eq(&self, other: &ManagementPreference) -> bool
fn eq(&self, other: &ManagementPreference) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ManagementPreference) -> bool
fn ne(&self, other: &ManagementPreference) -> bool
This method tests for !=.
impl StructuralPartialEq for ManagementPreference
Auto Trait Implementations
impl RefUnwindSafe for ManagementPreference
impl Send for ManagementPreference
impl Sync for ManagementPreference
impl Unpin for ManagementPreference
impl UnwindSafe for ManagementPreference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more