#[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
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 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) -> Option<&[SignalDecoder]>
pub fn signal_decoders(&self) -> Option<&[SignalDecoder]>
A list of information about signal decoders.
sourcepub fn network_interfaces(&self) -> Option<&[NetworkInterface]>
pub fn network_interfaces(&self) -> Option<&[NetworkInterface]>
A list of information about available network interfaces.
Metadata that can be used to manage the decoder manifest.
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
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 CreateDecoderManifestInput
impl Debug for CreateDecoderManifestInput
source§impl PartialEq<CreateDecoderManifestInput> for CreateDecoderManifestInput
impl PartialEq<CreateDecoderManifestInput> for CreateDecoderManifestInput
source§fn eq(&self, other: &CreateDecoderManifestInput) -> bool
fn eq(&self, other: &CreateDecoderManifestInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateDecoderManifestInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more