Struct aws_sdk_iotfleetwise::types::builders::CanInterfaceBuilder
source · #[non_exhaustive]pub struct CanInterfaceBuilder { /* private fields */ }
Expand description
A builder for CanInterface
.
Implementations§
source§impl CanInterfaceBuilder
impl CanInterfaceBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The unique name of the interface.
This field is required.sourcepub fn protocol_name(self, input: impl Into<String>) -> Self
pub fn protocol_name(self, input: impl Into<String>) -> Self
The name of the communication protocol for the interface.
sourcepub fn set_protocol_name(self, input: Option<String>) -> Self
pub fn set_protocol_name(self, input: Option<String>) -> Self
The name of the communication protocol for the interface.
sourcepub fn get_protocol_name(&self) -> &Option<String>
pub fn get_protocol_name(&self) -> &Option<String>
The name of the communication protocol for the interface.
sourcepub fn protocol_version(self, input: impl Into<String>) -> Self
pub fn protocol_version(self, input: impl Into<String>) -> Self
The version of the communication protocol for the interface.
sourcepub fn set_protocol_version(self, input: Option<String>) -> Self
pub fn set_protocol_version(self, input: Option<String>) -> Self
The version of the communication protocol for the interface.
sourcepub fn get_protocol_version(&self) -> &Option<String>
pub fn get_protocol_version(&self) -> &Option<String>
The version of the communication protocol for the interface.
sourcepub fn build(self) -> Result<CanInterface, BuildError>
pub fn build(self) -> Result<CanInterface, BuildError>
Consumes the builder and constructs a CanInterface
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CanInterfaceBuilder
impl Clone for CanInterfaceBuilder
source§fn clone(&self) -> CanInterfaceBuilder
fn clone(&self) -> CanInterfaceBuilder
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 CanInterfaceBuilder
impl Debug for CanInterfaceBuilder
source§impl Default for CanInterfaceBuilder
impl Default for CanInterfaceBuilder
source§fn default() -> CanInterfaceBuilder
fn default() -> CanInterfaceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CanInterfaceBuilder
impl PartialEq for CanInterfaceBuilder
source§fn eq(&self, other: &CanInterfaceBuilder) -> bool
fn eq(&self, other: &CanInterfaceBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CanInterfaceBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CanInterfaceBuilder
impl Send for CanInterfaceBuilder
impl Sync for CanInterfaceBuilder
impl Unpin for CanInterfaceBuilder
impl UnwindSafe for CanInterfaceBuilder
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.