#[non_exhaustive]pub struct CreateDecoderManifestInput {
pub name: Option<String>,
pub description: Option<String>,
pub model_manifest_arn: Option<String>,
pub signal_decoders: Option<Vec<SignalDecoder>>,
pub network_interfaces: Option<Vec<NetworkInterface>>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The unique name of the decoder manifest to create.
description: Option<String>
A brief description of the decoder manifest.
model_manifest_arn: Option<String>
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
signal_decoders: Option<Vec<SignalDecoder>>
A list of information about signal decoders.
network_interfaces: Option<Vec<NetworkInterface>>
A list of information about available network interfaces.
Metadata that can be used to manage the decoder manifest.
Implementations§
source§impl CreateDecoderManifestInput
impl CreateDecoderManifestInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the decoder manifest.
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the vehicle model (model manifest).
sourcepub fn signal_decoders(&self) -> &[SignalDecoder]
pub fn signal_decoders(&self) -> &[SignalDecoder]
A list of information about signal decoders.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .signal_decoders.is_none()
.
sourcepub fn network_interfaces(&self) -> &[NetworkInterface]
pub fn network_interfaces(&self) -> &[NetworkInterface]
A list of information about available network interfaces.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .network_interfaces.is_none()
.
Metadata that can be used to manage the decoder manifest.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateDecoderManifestInput
impl CreateDecoderManifestInput
sourcepub fn builder() -> CreateDecoderManifestInputBuilder
pub fn builder() -> CreateDecoderManifestInputBuilder
Creates a new builder-style object to manufacture CreateDecoderManifestInput
.
Trait Implementations§
source§impl Clone for CreateDecoderManifestInput
impl Clone for CreateDecoderManifestInput
source§fn clone(&self) -> CreateDecoderManifestInput
fn clone(&self) -> CreateDecoderManifestInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDecoderManifestInput
impl Debug for CreateDecoderManifestInput
source§impl PartialEq for CreateDecoderManifestInput
impl PartialEq for CreateDecoderManifestInput
source§fn eq(&self, other: &CreateDecoderManifestInput) -> bool
fn eq(&self, other: &CreateDecoderManifestInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateDecoderManifestInput
Auto Trait Implementations§
impl Freeze for CreateDecoderManifestInput
impl RefUnwindSafe for CreateDecoderManifestInput
impl Send for CreateDecoderManifestInput
impl Sync for CreateDecoderManifestInput
impl Unpin for CreateDecoderManifestInput
impl UnwindSafe for CreateDecoderManifestInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more