pub struct MountInfo {
pub name: String,
pub details: String,
pub protocol: Protocol,
pub messages: Vec<String>,
pub constellations: Vec<Constellation>,
pub network: Network,
pub country: Option<CountryCode>,
pub location: Location,
}
Expand description
Information about a specific NTRIP mount point
Fields§
§name: String
§details: String
§protocol: Protocol
§messages: Vec<String>
§constellations: Vec<Constellation>
§network: Network
§country: Option<CountryCode>
§location: Location
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MountInfo
impl<'de> Deserialize<'de> for MountInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for MountInfo
Auto Trait Implementations§
impl Freeze for MountInfo
impl RefUnwindSafe for MountInfo
impl Send for MountInfo
impl Sync for MountInfo
impl Unpin for MountInfo
impl UnwindSafe for MountInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more