Struct aws_sdk_migrationhubstrategy::types::ServerSummary
source · #[non_exhaustive]pub struct ServerSummary {
pub server_os_type: Option<ServerOsType>,
pub count: Option<i32>,
}Expand description
Object containing details about the servers imported by Application Discovery Service
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.server_os_type: Option<ServerOsType>Type of operating system for the servers.
count: Option<i32>Number of servers.
Implementations§
source§impl ServerSummary
impl ServerSummary
sourcepub fn server_os_type(&self) -> Option<&ServerOsType>
pub fn server_os_type(&self) -> Option<&ServerOsType>
Type of operating system for the servers.
source§impl ServerSummary
impl ServerSummary
sourcepub fn builder() -> ServerSummaryBuilder
pub fn builder() -> ServerSummaryBuilder
Creates a new builder-style object to manufacture ServerSummary.
Trait Implementations§
source§impl Clone for ServerSummary
impl Clone for ServerSummary
source§fn clone(&self) -> ServerSummary
fn clone(&self) -> ServerSummary
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 Debug for ServerSummary
impl Debug for ServerSummary
source§impl PartialEq for ServerSummary
impl PartialEq for ServerSummary
source§fn eq(&self, other: &ServerSummary) -> bool
fn eq(&self, other: &ServerSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ServerSummary
Auto Trait Implementations§
impl RefUnwindSafe for ServerSummary
impl Send for ServerSummary
impl Sync for ServerSummary
impl Unpin for ServerSummary
impl UnwindSafe for ServerSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.