Struct canparse::dbc::SignalDefinition[][src]

pub struct SignalDefinition {
    pub name: String,
    pub start_bit: usize,
    pub bit_len: usize,
    pub little_endian: bool,
    pub signed: bool,
    pub scale: f32,
    pub offset: f32,
    pub min_value: f32,
    pub max_value: f32,
    pub units: String,
    pub receiving_node: String,
}

Fields

Trait Implementations

impl Debug for SignalDefinition
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SignalDefinition
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for SignalDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<SignalDefinition> for SpnDefinition
[src]

Performs the conversion.

Auto Trait Implementations