pub enum SentenceFormatter {
GGA = 0,
GNS = 1,
GSA = 2,
RMC = 3,
}
Variants§
Implementations§
Source§impl SentenceFormatter
impl SentenceFormatter
pub fn try_from(bytes: &[u8]) -> Option<SentenceFormatter>
Trait Implementations§
Source§impl Clone for SentenceFormatter
impl Clone for SentenceFormatter
Source§fn clone(&self) -> SentenceFormatter
fn clone(&self) -> SentenceFormatter
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 SentenceFormatter
impl Debug for SentenceFormatter
Source§impl PartialEq for SentenceFormatter
impl PartialEq for SentenceFormatter
impl Copy for SentenceFormatter
impl StructuralPartialEq for SentenceFormatter
Auto Trait Implementations§
impl Freeze for SentenceFormatter
impl RefUnwindSafe for SentenceFormatter
impl Send for SentenceFormatter
impl Sync for SentenceFormatter
impl Unpin for SentenceFormatter
impl UnwindSafe for SentenceFormatter
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