[][src]Struct ublox::AidIniBuilder

pub struct AidIniBuilder {
    pub ecef_x_or_lat: i32,
    pub ecef_y_or_lon: i32,
    pub ecef_z_or_alt: i32,
    pub pos_accuracy: u32,
    pub time_cfg: u16,
    pub week_or_ym: u16,
    pub tow_or_hms: u32,
    pub tow_ns: i32,
    pub tm_accuracy_ms: u32,
    pub tm_accuracy_ns: u32,
    pub clk_drift_or_freq: i32,
    pub clk_drift_or_freq_accuracy: u32,
    pub flags: u32,
}

Struct that is used to construct packets, see the crate-level documentation for more information

Fields

ecef_x_or_lat: i32
ecef_y_or_lon: i32
ecef_z_or_alt: i32
pos_accuracy: u32
time_cfg: u16
week_or_ym: u16
tow_or_hms: u32
tow_ns: i32
tm_accuracy_ms: u32
tm_accuracy_ns: u32
clk_drift_or_freq: i32
clk_drift_or_freq_accuracy: u32
flags: u32

Implementations

impl AidIniBuilder[src]

impl AidIniBuilder[src]

pub fn set_position(self, pos: Position) -> Self[src]

pub fn set_time(self, tm: DateTime<Utc>) -> Self[src]

Trait Implementations

impl Default for AidIniBuilder[src]

impl From<AidIniBuilder> for [u8; 56][src]

impl UbxPacketCreator for AidIniBuilder[src]

Auto Trait Implementations

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.