[][src]Enum adafruit_gps::send_pmtk::Pmtk001Ack

pub enum Pmtk001Ack {
    Invalid,
    Unsupported,
    Failed,
    Success,
    NoPacket,
}

PMTK001 return values

  • Invalid (No such command)
  • Unsupported (Chip type does not support this command)
  • Falied (Chip failed to do the command for some reason)
  • Success (Command implimented)
  • NoPacket (After 10 read lines, no command found)

Variants

Invalid
Unsupported
Failed
Success
NoPacket

Trait Implementations

impl Debug for Pmtk001Ack[src]

impl PartialEq<Pmtk001Ack> for Pmtk001Ack[src]

impl StructuralPartialEq for Pmtk001Ack[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.