pub struct NtripClientStatusBlock {
pub n: u8,
pub sb_length: u8,
pub connections: Vec<NtripConnectionSlot>,
/* private fields */
}Expand description
NTRIP client connection status (Block ID 4053).
Fields§
§n: u8§sb_length: u8§connections: Vec<NtripConnectionSlot>Implementations§
Trait Implementations§
Source§impl Clone for NtripClientStatusBlock
impl Clone for NtripClientStatusBlock
Source§fn clone(&self) -> NtripClientStatusBlock
fn clone(&self) -> NtripClientStatusBlock
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 NtripClientStatusBlock
impl Debug for NtripClientStatusBlock
Auto Trait Implementations§
impl Freeze for NtripClientStatusBlock
impl RefUnwindSafe for NtripClientStatusBlock
impl Send for NtripClientStatusBlock
impl Sync for NtripClientStatusBlock
impl Unpin for NtripClientStatusBlock
impl UnsafeUnpin for NtripClientStatusBlock
impl UnwindSafe for NtripClientStatusBlock
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