Struct aws_sdk_iotfleetwise::types::builders::NodeCountsBuilder
source · #[non_exhaustive]pub struct NodeCountsBuilder { /* private fields */ }Expand description
A builder for NodeCounts.
Implementations§
source§impl NodeCountsBuilder
impl NodeCountsBuilder
sourcepub fn total_nodes(self, input: i32) -> Self
pub fn total_nodes(self, input: i32) -> Self
The total number of nodes in a vehicle network.
sourcepub fn set_total_nodes(self, input: Option<i32>) -> Self
pub fn set_total_nodes(self, input: Option<i32>) -> Self
The total number of nodes in a vehicle network.
sourcepub fn get_total_nodes(&self) -> &Option<i32>
pub fn get_total_nodes(&self) -> &Option<i32>
The total number of nodes in a vehicle network.
sourcepub fn total_branches(self, input: i32) -> Self
pub fn total_branches(self, input: i32) -> Self
The total number of nodes in a vehicle network that represent branches.
sourcepub fn set_total_branches(self, input: Option<i32>) -> Self
pub fn set_total_branches(self, input: Option<i32>) -> Self
The total number of nodes in a vehicle network that represent branches.
sourcepub fn get_total_branches(&self) -> &Option<i32>
pub fn get_total_branches(&self) -> &Option<i32>
The total number of nodes in a vehicle network that represent branches.
sourcepub fn total_sensors(self, input: i32) -> Self
pub fn total_sensors(self, input: i32) -> Self
The total number of nodes in a vehicle network that represent sensors.
sourcepub fn set_total_sensors(self, input: Option<i32>) -> Self
pub fn set_total_sensors(self, input: Option<i32>) -> Self
The total number of nodes in a vehicle network that represent sensors.
sourcepub fn get_total_sensors(&self) -> &Option<i32>
pub fn get_total_sensors(&self) -> &Option<i32>
The total number of nodes in a vehicle network that represent sensors.
sourcepub fn total_attributes(self, input: i32) -> Self
pub fn total_attributes(self, input: i32) -> Self
The total number of nodes in a vehicle network that represent attributes.
sourcepub fn set_total_attributes(self, input: Option<i32>) -> Self
pub fn set_total_attributes(self, input: Option<i32>) -> Self
The total number of nodes in a vehicle network that represent attributes.
sourcepub fn get_total_attributes(&self) -> &Option<i32>
pub fn get_total_attributes(&self) -> &Option<i32>
The total number of nodes in a vehicle network that represent attributes.
sourcepub fn total_actuators(self, input: i32) -> Self
pub fn total_actuators(self, input: i32) -> Self
The total number of nodes in a vehicle network that represent actuators.
sourcepub fn set_total_actuators(self, input: Option<i32>) -> Self
pub fn set_total_actuators(self, input: Option<i32>) -> Self
The total number of nodes in a vehicle network that represent actuators.
sourcepub fn get_total_actuators(&self) -> &Option<i32>
pub fn get_total_actuators(&self) -> &Option<i32>
The total number of nodes in a vehicle network that represent actuators.
sourcepub fn total_structs(self, input: i32) -> Self
pub fn total_structs(self, input: i32) -> Self
The total structure for the node.
sourcepub fn set_total_structs(self, input: Option<i32>) -> Self
pub fn set_total_structs(self, input: Option<i32>) -> Self
The total structure for the node.
sourcepub fn get_total_structs(&self) -> &Option<i32>
pub fn get_total_structs(&self) -> &Option<i32>
The total structure for the node.
sourcepub fn total_properties(self, input: i32) -> Self
pub fn total_properties(self, input: i32) -> Self
The total properties for the node.
sourcepub fn set_total_properties(self, input: Option<i32>) -> Self
pub fn set_total_properties(self, input: Option<i32>) -> Self
The total properties for the node.
sourcepub fn get_total_properties(&self) -> &Option<i32>
pub fn get_total_properties(&self) -> &Option<i32>
The total properties for the node.
sourcepub fn build(self) -> NodeCounts
pub fn build(self) -> NodeCounts
Consumes the builder and constructs a NodeCounts.
Trait Implementations§
source§impl Clone for NodeCountsBuilder
impl Clone for NodeCountsBuilder
source§fn clone(&self) -> NodeCountsBuilder
fn clone(&self) -> NodeCountsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NodeCountsBuilder
impl Debug for NodeCountsBuilder
source§impl Default for NodeCountsBuilder
impl Default for NodeCountsBuilder
source§fn default() -> NodeCountsBuilder
fn default() -> NodeCountsBuilder
source§impl PartialEq for NodeCountsBuilder
impl PartialEq for NodeCountsBuilder
source§fn eq(&self, other: &NodeCountsBuilder) -> bool
fn eq(&self, other: &NodeCountsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NodeCountsBuilder
Auto Trait Implementations§
impl Freeze for NodeCountsBuilder
impl RefUnwindSafe for NodeCountsBuilder
impl Send for NodeCountsBuilder
impl Sync for NodeCountsBuilder
impl Unpin for NodeCountsBuilder
impl UnwindSafe for NodeCountsBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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