ntrip-client 0.2.0

NTRIP client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! NTRIP Client library
//!
//! Provides an async NTRIP client for listing mounts and connecting to RTCM services

pub mod config;
pub use config::*;

pub mod snip;
pub use snip::*;

mod error;
pub use error::NtripClientError;

mod client;
pub use client::{NtripClient, NtripHandle};