Struct aws_sdk_appmesh::types::VirtualServiceStatus
source · #[non_exhaustive]pub struct VirtualServiceStatus {
pub status: VirtualServiceStatusCode,
}
Expand description
An object that represents the status of a virtual 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.status: VirtualServiceStatusCode
The current status of the virtual service.
Implementations§
source§impl VirtualServiceStatus
impl VirtualServiceStatus
sourcepub fn status(&self) -> &VirtualServiceStatusCode
pub fn status(&self) -> &VirtualServiceStatusCode
The current status of the virtual service.
source§impl VirtualServiceStatus
impl VirtualServiceStatus
sourcepub fn builder() -> VirtualServiceStatusBuilder
pub fn builder() -> VirtualServiceStatusBuilder
Creates a new builder-style object to manufacture VirtualServiceStatus
.
Trait Implementations§
source§impl Clone for VirtualServiceStatus
impl Clone for VirtualServiceStatus
source§fn clone(&self) -> VirtualServiceStatus
fn clone(&self) -> VirtualServiceStatus
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 VirtualServiceStatus
impl Debug for VirtualServiceStatus
source§impl PartialEq for VirtualServiceStatus
impl PartialEq for VirtualServiceStatus
source§fn eq(&self, other: &VirtualServiceStatus) -> bool
fn eq(&self, other: &VirtualServiceStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualServiceStatus
Auto Trait Implementations§
impl RefUnwindSafe for VirtualServiceStatus
impl Send for VirtualServiceStatus
impl Sync for VirtualServiceStatus
impl Unpin for VirtualServiceStatus
impl UnwindSafe for VirtualServiceStatus
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.