pub struct Nodes(pub Vec<String>);
Expand description
List of all CAN-Nodes, seperated by whitespaces.
The node section defines the names of all participating nodes. The names defined in this section have to be unique within this section.
nodes = 'BU_:' {node_name} ;
node_name = DBC_identifier ;
example:
BU_: ABS DRS_MM5_10
Tuple Fields§
§0: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Nodes
impl<'de> Deserialize<'de> for Nodes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Nodes
Auto Trait Implementations§
impl Freeze for Nodes
impl RefUnwindSafe for Nodes
impl Send for Nodes
impl Sync for Nodes
impl Unpin for Nodes
impl UnwindSafe for Nodes
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