pub enum LdfSignalInitValue {
Scalar(u8),
Array(Vec<u8>),
}
Expand description
The init_value specifies the signal value that shall be used by all subscriber nodes. The init_value_scalar is used for scalar signals and the init_value_array is used for byte array signals.
Variants§
Trait Implementations§
Source§impl Debug for LdfSignalInitValue
impl Debug for LdfSignalInitValue
Source§impl PartialEq for LdfSignalInitValue
impl PartialEq for LdfSignalInitValue
impl StructuralPartialEq for LdfSignalInitValue
Auto Trait Implementations§
impl Freeze for LdfSignalInitValue
impl RefUnwindSafe for LdfSignalInitValue
impl Send for LdfSignalInitValue
impl Sync for LdfSignalInitValue
impl Unpin for LdfSignalInitValue
impl UnwindSafe for LdfSignalInitValue
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