[][src]Enum gpsd_proto::GpsdError

pub enum GpsdError {
    IoError(Error),
    JsonError(Error),
    UnsupportedGpsdProtocolVersion,
    UnexpectedGpsdReply(String),
    WatchFail(String),
}

Errors during handshake or data acquisition.

Variants

IoError(Error)

Generic I/O error.

JsonError(Error)

JSON error.

UnsupportedGpsdProtocolVersion

The protocol version reported by gpsd is smaller PROTO_MAJOR_MIN.

UnexpectedGpsdReply(String)

Unexpected reply of gpsd.

WatchFail(String)

Failed to enable watch.

Trait Implementations

impl From<Error> for GpsdError[src]

impl From<Error> for GpsdError[src]

impl Display for GpsdError[src]

impl Debug for GpsdError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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]