Struct aws_sdk_iotfleetwise::types::NodeCounts
source · #[non_exhaustive]pub struct NodeCounts { /* private fields */ }Expand description
Information about the number of nodes and node types in a vehicle network.
Implementations§
source§impl NodeCounts
impl NodeCounts
sourcepub fn total_nodes(&self) -> i32
pub fn total_nodes(&self) -> i32
The total number of nodes in a vehicle network.
sourcepub fn total_branches(&self) -> i32
pub fn total_branches(&self) -> i32
The total number of nodes in a vehicle network that represent branches.
sourcepub fn total_sensors(&self) -> i32
pub fn total_sensors(&self) -> i32
The total number of nodes in a vehicle network that represent sensors.
sourcepub fn total_attributes(&self) -> i32
pub fn total_attributes(&self) -> i32
The total number of nodes in a vehicle network that represent attributes.
sourcepub fn total_actuators(&self) -> i32
pub fn total_actuators(&self) -> i32
The total number of nodes in a vehicle network that represent actuators.
source§impl NodeCounts
impl NodeCounts
sourcepub fn builder() -> NodeCountsBuilder
pub fn builder() -> NodeCountsBuilder
Creates a new builder-style object to manufacture NodeCounts.
Trait Implementations§
source§impl Clone for NodeCounts
impl Clone for NodeCounts
source§fn clone(&self) -> NodeCounts
fn clone(&self) -> NodeCounts
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 NodeCounts
impl Debug for NodeCounts
source§impl PartialEq<NodeCounts> for NodeCounts
impl PartialEq<NodeCounts> for NodeCounts
source§fn eq(&self, other: &NodeCounts) -> bool
fn eq(&self, other: &NodeCounts) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NodeCounts
Auto Trait Implementations§
impl RefUnwindSafe for NodeCounts
impl Send for NodeCounts
impl Sync for NodeCounts
impl Unpin for NodeCounts
impl UnwindSafe for NodeCounts
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