pub struct NtripServerStatusBlock {
pub n: u8,
pub sb_length: u8,
pub connections: Vec<NtripConnectionSlot>,
/* private fields */
}Expand description
NTRIP server connection status (Block ID 4122).
Uses the same binary layout as the client status block (common Septentrio pairing). If a firmware revision differs, compare with the SBF reference for your receiver.
Fields§
§n: u8§sb_length: u8§connections: Vec<NtripConnectionSlot>Implementations§
Trait Implementations§
Source§impl Clone for NtripServerStatusBlock
impl Clone for NtripServerStatusBlock
Source§fn clone(&self) -> NtripServerStatusBlock
fn clone(&self) -> NtripServerStatusBlock
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NtripServerStatusBlock
impl Debug for NtripServerStatusBlock
Auto Trait Implementations§
impl Freeze for NtripServerStatusBlock
impl RefUnwindSafe for NtripServerStatusBlock
impl Send for NtripServerStatusBlock
impl Sync for NtripServerStatusBlock
impl Unpin for NtripServerStatusBlock
impl UnsafeUnpin for NtripServerStatusBlock
impl UnwindSafe for NtripServerStatusBlock
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