pub struct NetworkHealthReport {
pub udp_bind_ok: bool,
pub broadcast_ok: bool,
pub multicast_ok: bool,
pub notes: Vec<String>,
}Fields§
§udp_bind_ok: bool§broadcast_ok: bool§multicast_ok: bool§notes: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for NetworkHealthReport
impl Clone for NetworkHealthReport
Source§fn clone(&self) -> NetworkHealthReport
fn clone(&self) -> NetworkHealthReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NetworkHealthReport
impl RefUnwindSafe for NetworkHealthReport
impl Send for NetworkHealthReport
impl Sync for NetworkHealthReport
impl Unpin for NetworkHealthReport
impl UnsafeUnpin for NetworkHealthReport
impl UnwindSafe for NetworkHealthReport
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