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§
Trait Implementations§
Source§impl Clone for ValueDescription
impl Clone for ValueDescription
Source§fn clone(&self) -> ValueDescription
fn clone(&self) -> ValueDescription
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 ValueDescription
impl Debug for ValueDescription
Source§impl PartialEq for ValueDescription
impl PartialEq for ValueDescription
impl StructuralPartialEq for ValueDescription
Auto Trait Implementations§
impl Freeze for ValueDescription
impl RefUnwindSafe for ValueDescription
impl Send for ValueDescription
impl Sync for ValueDescription
impl Unpin for ValueDescription
impl UnwindSafe for ValueDescription
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