pub struct SimpleConnectionStatus {
pub total_attempts: usize,
pub direct_attempts: usize,
pub nat_traversal_attempts: usize,
pub connected: usize,
pub failed: usize,
}Expand description
Status information
Fields§
§total_attempts: usize§direct_attempts: usize§nat_traversal_attempts: usize§connected: usize§failed: usizeTrait Implementations§
Source§impl Clone for SimpleConnectionStatus
impl Clone for SimpleConnectionStatus
Source§fn clone(&self) -> SimpleConnectionStatus
fn clone(&self) -> SimpleConnectionStatus
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 moreAuto Trait Implementations§
impl Freeze for SimpleConnectionStatus
impl RefUnwindSafe for SimpleConnectionStatus
impl Send for SimpleConnectionStatus
impl Sync for SimpleConnectionStatus
impl Unpin for SimpleConnectionStatus
impl UnwindSafe for SimpleConnectionStatus
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