[][src]Struct ublox_core::UbxDriver

pub struct UbxDriver<DI> { /* fields omitted */ }

Methods

impl<DI, CommE> UbxDriver<DI> where
    DI: DeviceInterface<InterfaceError = Error<CommE>>,
    CommE: Debug
[src]

pub fn setup(
    &mut self,
    _delay_source: &mut impl DelayUs<u32>
) -> Result<(), DI::InterfaceError>
[src]

pub fn take_last_nav_pvt(&mut self) -> Option<NavPosVelTimeM8>[src]

pub fn take_last_nav_dop(&mut self) -> Option<NavDopM8>[src]

pub fn take_last_mon_hw(&mut self) -> Option<MonHardwareM8>[src]

pub fn handle_all_messages(
    &mut self,
    delay_source: &mut impl DelayUs<u32>
) -> Result<usize, DI::InterfaceError>
[src]

pub fn handle_one_message(&mut self) -> Result<usize, DI::InterfaceError>[src]

return 1 if we handled a message?

Auto Trait Implementations

impl<DI> Send for UbxDriver<DI> where
    DI: Send

impl<DI> Sync for UbxDriver<DI> where
    DI: Sync

impl<DI> Unpin for UbxDriver<DI> where
    DI: 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.