Enum dlt_core::dlt::FixedPointValue
source · Expand description
Fixed-Point representation. only supports 32 bit and 64 bit values according to the spec 128 bit are possible but we don’t support it
Variants
I32(i32)
I64(i64)
Trait Implementations
sourceimpl Clone for FixedPointValue
impl Clone for FixedPointValue
sourcefn clone(&self) -> FixedPointValue
fn clone(&self) -> FixedPointValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FixedPointValue
impl Debug for FixedPointValue
sourceimpl PartialEq<FixedPointValue> for FixedPointValue
impl PartialEq<FixedPointValue> for FixedPointValue
sourcefn eq(&self, other: &FixedPointValue) -> bool
fn eq(&self, other: &FixedPointValue) -> bool
sourceimpl Serialize for FixedPointValue
impl Serialize for FixedPointValue
impl StructuralPartialEq for FixedPointValue
Auto Trait Implementations
impl RefUnwindSafe for FixedPointValue
impl Send for FixedPointValue
impl Sync for FixedPointValue
impl Unpin for FixedPointValue
impl UnwindSafe for FixedPointValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more