Enum gpsd_proto::GpsdError[][src]

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

Errors during handshake or data acquisition.

Variants

Generic I/O error.

JSON error.

The protocol version reported by gpsd is smaller PROTO_MAJOR_MIN.

Unexpected reply of gpsd.

Failed to enable watch.

Trait Implementations

impl Debug for GpsdError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for GpsdError
[src]

Performs the conversion.

impl From<Error> for GpsdError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for GpsdError

impl Sync for GpsdError