pub struct GPSTimeTable {
pub gps_time: u32,
pub gps_week: u16,
pub svn_num: u8,
pub flags_1: u8,
pub flags_2: u8,
pub init_num: u8,
}Expand description
GPSTimeTable contains all the values related to the description of the time in terms of GPS taken data
Fields§
§gps_time: u32§gps_week: u16§svn_num: u8§flags_1: u8§flags_2: u8§init_num: u8Implementations§
Trait Implementations§
Source§impl Clone for GPSTimeTable
impl Clone for GPSTimeTable
Source§fn clone(&self) -> GPSTimeTable
fn clone(&self) -> GPSTimeTable
Returns a copy 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 GPSTimeTable
impl Debug for GPSTimeTable
Source§impl<'de> Deserialize<'de> for GPSTimeTable
impl<'de> Deserialize<'de> for GPSTimeTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl GsofTable for GPSTimeTable
impl GsofTable for GPSTimeTable
Source§fn table_name(&self) -> &str
fn table_name(&self) -> &str
Returns the table name for GPSTimeTable
Source§impl Serialize for GPSTimeTable
impl Serialize for GPSTimeTable
impl Copy for GPSTimeTable
Auto Trait Implementations§
impl Freeze for GPSTimeTable
impl RefUnwindSafe for GPSTimeTable
impl Send for GPSTimeTable
impl Sync for GPSTimeTable
impl Unpin for GPSTimeTable
impl UnwindSafe for GPSTimeTable
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