[][src]Struct nmea0183_core::types::IntegerFloat

pub struct IntegerFloat<I, D> {
    pub integer: I,
    pub decimal: D,
    pub decimal_length: u8,
}

Fields

integer: Idecimal: Ddecimal_length: u8

Trait Implementations

impl<I: Clone, D: Clone> Clone for IntegerFloat<I, D>[src]

impl<I: Copy, D: Copy> Copy for IntegerFloat<I, D>[src]

impl<I: Display, D: Display> Debug for IntegerFloat<I, D>[src]

impl<I: Default, D: Default> Default for IntegerFloat<I, D>[src]

impl<I: FromStr<Err = ParseIntError> + Default, '_> From<&'_ [u8]> for IntegerFloat<I, u8>[src]

impl<I: FromStr<Err = ParseIntError> + Default, '_> From<&'_ [u8]> for IntegerFloat<I, u16>[src]

impl Into<f32> for IntegerFloat<u8, u8>[src]

impl Into<f32> for IntegerFloat<u16, u8>[src]

impl Into<f32> for IntegerFloat<i16, u8>[src]

impl Into<f32> for IntegerFloat<i32, u8>[src]

impl Into<f32> for IntegerFloat<i32, u16>[src]

impl<I: PartialEq, D: PartialEq> PartialEq<IntegerFloat<I, D>> for IntegerFloat<I, D>[src]

impl<I, D> StructuralPartialEq for IntegerFloat<I, D>[src]

Auto Trait Implementations

impl<I, D> Send for IntegerFloat<I, D> where
    D: Send,
    I: Send

impl<I, D> Sync for IntegerFloat<I, D> where
    D: Sync,
    I: Sync

impl<I, D> Unpin for IntegerFloat<I, D> where
    D: Unpin,
    I: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.