[][src]Struct nmea_0183::messages::TXTMessage

pub struct TXTMessage<'a> {
    pub num_msg: Option<u8>,
    pub msg_num: Option<u8>,
    pub msg_type: MessageLevel,
    pub text: &'a str,
}

Text Transmission

Fields

num_msg: Option<u8>

Total number of messages in thistransmission

msg_num: Option<u8>

Message number in this transmission

msg_type: MessageLevel

Text identifier

text: &'a str

The payload

Trait Implementations

impl<'a> PartialEq<TXTMessage<'a>> for TXTMessage<'a>[src]

impl<'a> Debug for TXTMessage<'a>[src]

Auto Trait Implementations

impl<'a> Send for TXTMessage<'a>

impl<'a> Unpin for TXTMessage<'a>

impl<'a> Sync for TXTMessage<'a>

impl<'a> UnwindSafe for TXTMessage<'a>

impl<'a> RefUnwindSafe for TXTMessage<'a>

Blanket Implementations

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.

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

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

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