Struct aws_sdk_iotfleetwise::types::NodeCounts
source · #[non_exhaustive]pub struct NodeCounts {
pub total_nodes: i32,
pub total_branches: i32,
pub total_sensors: i32,
pub total_attributes: i32,
pub total_actuators: i32,
pub total_structs: i32,
pub total_properties: i32,
}Expand description
Information about the number of nodes and node types in a vehicle network.
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.total_nodes: i32The total number of nodes in a vehicle network.
total_branches: i32The total number of nodes in a vehicle network that represent branches.
total_sensors: i32The total number of nodes in a vehicle network that represent sensors.
total_attributes: i32The total number of nodes in a vehicle network that represent attributes.
total_actuators: i32The total number of nodes in a vehicle network that represent actuators.
total_structs: i32The total structure for the node.
total_properties: i32The total properties for the node.
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.
sourcepub fn total_structs(&self) -> i32
pub fn total_structs(&self) -> i32
The total structure for the node.
sourcepub fn total_properties(&self) -> i32
pub fn total_properties(&self) -> i32
The total properties for the node.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NodeCounts
impl Debug for NodeCounts
source§impl PartialEq for NodeCounts
impl PartialEq for NodeCounts
source§fn eq(&self, other: &NodeCounts) -> bool
fn eq(&self, other: &NodeCounts) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NodeCounts
Auto Trait Implementations§
impl Freeze for NodeCounts
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
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