pub struct DbcSignalDef {
pub name: String,
pub extended: bool,
pub message_size: u8,
pub start_bit: u64,
pub size: u64,
pub byte_order: ByteOrder,
pub value_type: ValueType,
pub factor: f64,
pub offset: f64,
pub min: f64,
pub max: f64,
pub unit: Option<String>,
}Fields§
§name: String§extended: bool§message_size: u8§start_bit: u64§size: u64§byte_order: ByteOrder§value_type: ValueType§factor: f64§offset: f64§min: f64§max: f64§unit: Option<String>Trait Implementations§
Source§impl Clone for DbcSignalDef
impl Clone for DbcSignalDef
Source§fn clone(&self) -> DbcSignalDef
fn clone(&self) -> DbcSignalDef
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DbcSignalDef
impl RefUnwindSafe for DbcSignalDef
impl Send for DbcSignalDef
impl Sync for DbcSignalDef
impl Unpin for DbcSignalDef
impl UnsafeUnpin for DbcSignalDef
impl UnwindSafe for DbcSignalDef
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