Struct aws_sdk_iotsitewise::types::ConfigurationStatus
source · #[non_exhaustive]pub struct ConfigurationStatus {
pub state: ConfigurationState,
pub error: Option<ConfigurationErrorDetails>,
}Expand description
Contains current status information for the configuration.
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.state: ConfigurationStateThe current state of the configuration.
error: Option<ConfigurationErrorDetails>Contains associated error information, if any.
Implementations§
source§impl ConfigurationStatus
impl ConfigurationStatus
sourcepub fn state(&self) -> &ConfigurationState
pub fn state(&self) -> &ConfigurationState
The current state of the configuration.
sourcepub fn error(&self) -> Option<&ConfigurationErrorDetails>
pub fn error(&self) -> Option<&ConfigurationErrorDetails>
Contains associated error information, if any.
source§impl ConfigurationStatus
impl ConfigurationStatus
sourcepub fn builder() -> ConfigurationStatusBuilder
pub fn builder() -> ConfigurationStatusBuilder
Creates a new builder-style object to manufacture ConfigurationStatus.
Trait Implementations§
source§impl Clone for ConfigurationStatus
impl Clone for ConfigurationStatus
source§fn clone(&self) -> ConfigurationStatus
fn clone(&self) -> ConfigurationStatus
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 ConfigurationStatus
impl Debug for ConfigurationStatus
source§impl PartialEq for ConfigurationStatus
impl PartialEq for ConfigurationStatus
source§fn eq(&self, other: &ConfigurationStatus) -> bool
fn eq(&self, other: &ConfigurationStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConfigurationStatus
Auto Trait Implementations§
impl RefUnwindSafe for ConfigurationStatus
impl Send for ConfigurationStatus
impl Sync for ConfigurationStatus
impl Unpin for ConfigurationStatus
impl UnwindSafe for ConfigurationStatus
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.