Struct aws_sdk_migrationhubstrategy::operation::get_application_component_strategies::GetApplicationComponentStrategiesOutput   
source · #[non_exhaustive]pub struct GetApplicationComponentStrategiesOutput {
    pub application_component_strategies: Option<Vec<ApplicationComponentStrategy>>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.application_component_strategies: Option<Vec<ApplicationComponentStrategy>>A list of application component strategy recommendations.
Implementations§
source§impl GetApplicationComponentStrategiesOutput
 
impl GetApplicationComponentStrategiesOutput
sourcepub fn application_component_strategies(
    &self
) -> Option<&[ApplicationComponentStrategy]>
 
pub fn application_component_strategies( &self ) -> Option<&[ApplicationComponentStrategy]>
A list of application component strategy recommendations.
source§impl GetApplicationComponentStrategiesOutput
 
impl GetApplicationComponentStrategiesOutput
sourcepub fn builder() -> GetApplicationComponentStrategiesOutputBuilder
 
pub fn builder() -> GetApplicationComponentStrategiesOutputBuilder
Creates a new builder-style object to manufacture GetApplicationComponentStrategiesOutput.
Trait Implementations§
source§impl Clone for GetApplicationComponentStrategiesOutput
 
impl Clone for GetApplicationComponentStrategiesOutput
source§fn clone(&self) -> GetApplicationComponentStrategiesOutput
 
fn clone(&self) -> GetApplicationComponentStrategiesOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl PartialEq<GetApplicationComponentStrategiesOutput> for GetApplicationComponentStrategiesOutput
 
impl PartialEq<GetApplicationComponentStrategiesOutput> for GetApplicationComponentStrategiesOutput
source§fn eq(&self, other: &GetApplicationComponentStrategiesOutput) -> bool
 
fn eq(&self, other: &GetApplicationComponentStrategiesOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetApplicationComponentStrategiesOutput
 
impl RequestId for GetApplicationComponentStrategiesOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for GetApplicationComponentStrategiesOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetApplicationComponentStrategiesOutput
impl Send for GetApplicationComponentStrategiesOutput
impl Sync for GetApplicationComponentStrategiesOutput
impl Unpin for GetApplicationComponentStrategiesOutput
impl UnwindSafe for GetApplicationComponentStrategiesOutput
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