Enum can_dbc::ValueDescription
source · [−]pub enum ValueDescription {
Signal {
message_id: MessageId,
signal_name: String,
value_descriptions: Vec<ValDescription>,
},
EnvironmentVariable {
env_var_name: String,
value_descriptions: Vec<ValDescription>,
},
}
Expand description
Encoding for signal raw values.
Variants
Signal
EnvironmentVariable
Trait Implementations
sourceimpl Clone for ValueDescription
impl Clone for ValueDescription
sourcefn clone(&self) -> ValueDescription
fn clone(&self) -> ValueDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ValueDescription
impl Debug for ValueDescription
sourceimpl PartialEq<ValueDescription> for ValueDescription
impl PartialEq<ValueDescription> for ValueDescription
sourcefn eq(&self, other: &ValueDescription) -> bool
fn eq(&self, other: &ValueDescription) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ValueDescription) -> bool
fn ne(&self, other: &ValueDescription) -> bool
This method tests for !=
.
impl StructuralPartialEq for ValueDescription
Auto Trait Implementations
impl RefUnwindSafe for ValueDescription
impl Send for ValueDescription
impl Sync for ValueDescription
impl Unpin for ValueDescription
impl UnwindSafe for ValueDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more