gnss-protos 0.0.1

GNSS protos encoder and decoder
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "gps")]
use crate::gps::GpsError;

/// GNSS-Proto error
#[derive(Debug)]
pub enum Error {
    #[cfg(feature = "gps")]
    Gps(GpsError),
}