Struct aws_sdk_iotfleetwise::types::InvalidSignal
source · #[non_exhaustive]pub struct InvalidSignal {
pub name: Option<String>,
pub reason: Option<String>,
}
Expand description
A reason that a signal isn't valid.
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.name: Option<String>
The name of the signal that isn't valid.
reason: Option<String>
A message about why the signal isn't valid.
Implementations§
source§impl InvalidSignal
impl InvalidSignal
source§impl InvalidSignal
impl InvalidSignal
sourcepub fn builder() -> InvalidSignalBuilder
pub fn builder() -> InvalidSignalBuilder
Creates a new builder-style object to manufacture InvalidSignal
.
Trait Implementations§
source§impl Clone for InvalidSignal
impl Clone for InvalidSignal
source§fn clone(&self) -> InvalidSignal
fn clone(&self) -> InvalidSignal
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 InvalidSignal
impl Debug for InvalidSignal
source§impl PartialEq for InvalidSignal
impl PartialEq for InvalidSignal
source§fn eq(&self, other: &InvalidSignal) -> bool
fn eq(&self, other: &InvalidSignal) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InvalidSignal
Auto Trait Implementations§
impl RefUnwindSafe for InvalidSignal
impl Send for InvalidSignal
impl Sync for InvalidSignal
impl Unpin for InvalidSignal
impl UnwindSafe for InvalidSignal
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.