pub struct SignalLayout {
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,
}Fields§
§start_bit: u64§size: u64§byte_order: ByteOrder§value_type: ValueType§factor: f64§offset: f64§min: f64§max: f64Trait Implementations§
Source§impl Clone for SignalLayout
impl Clone for SignalLayout
Source§fn clone(&self) -> SignalLayout
fn clone(&self) -> SignalLayout
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 moreSource§impl Debug for SignalLayout
impl Debug for SignalLayout
Source§impl From<&Signal> for SignalLayout
impl From<&Signal> for SignalLayout
Source§fn from(value: &ParsedSignal) -> Self
fn from(value: &ParsedSignal) -> Self
Converts to this type from the input type.
Source§impl Hash for SignalLayout
impl Hash for SignalLayout
Source§impl PartialEq for SignalLayout
impl PartialEq for SignalLayout
impl Copy for SignalLayout
impl Eq for SignalLayout
Auto Trait Implementations§
impl Freeze for SignalLayout
impl RefUnwindSafe for SignalLayout
impl Send for SignalLayout
impl Sync for SignalLayout
impl Unpin for SignalLayout
impl UnsafeUnpin for SignalLayout
impl UnwindSafe for SignalLayout
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