pub struct ClientStatus {
pub state: LinkState,
pub conn_handle: ConnectionHandle,
}
Expand description
State of a client connection.
Fields§
§state: LinkState
Link state for the client.
conn_handle: ConnectionHandle
Connection handle for the client
Trait Implementations§
Source§impl Clone for ClientStatus
impl Clone for ClientStatus
Source§fn clone(&self) -> ClientStatus
fn clone(&self) -> ClientStatus
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 ClientStatus
impl Debug for ClientStatus
Source§impl PartialEq for ClientStatus
impl PartialEq for ClientStatus
impl Copy for ClientStatus
impl StructuralPartialEq for ClientStatus
Auto Trait Implementations§
impl Freeze for ClientStatus
impl RefUnwindSafe for ClientStatus
impl Send for ClientStatus
impl Sync for ClientStatus
impl Unpin for ClientStatus
impl UnwindSafe for ClientStatus
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