Struct ssip_client_async::HistoryClientStatus
source · pub struct HistoryClientStatus {
pub id: u32,
pub name: String,
pub connected: bool,
}
Expand description
History client status
Fields§
§id: u32
§name: String
§connected: bool
Implementations§
Trait Implementations§
source§impl Clone for HistoryClientStatus
impl Clone for HistoryClientStatus
source§fn clone(&self) -> HistoryClientStatus
fn clone(&self) -> HistoryClientStatus
Returns a copy 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 HistoryClientStatus
impl Debug for HistoryClientStatus
source§impl FromStr for HistoryClientStatus
impl FromStr for HistoryClientStatus
§type Err = ClientError
type Err = ClientError
The associated error which can be returned from parsing.
source§fn from_str(
s: &str
) -> Result<HistoryClientStatus, <HistoryClientStatus as FromStr>::Err>
fn from_str( s: &str ) -> Result<HistoryClientStatus, <HistoryClientStatus as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moresource§impl Hash for HistoryClientStatus
impl Hash for HistoryClientStatus
source§impl PartialEq<HistoryClientStatus> for HistoryClientStatus
impl PartialEq<HistoryClientStatus> for HistoryClientStatus
source§fn eq(&self, other: &HistoryClientStatus) -> bool
fn eq(&self, other: &HistoryClientStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for HistoryClientStatus
impl StructuralEq for HistoryClientStatus
impl StructuralPartialEq for HistoryClientStatus
Auto Trait Implementations§
impl RefUnwindSafe for HistoryClientStatus
impl Send for HistoryClientStatus
impl Sync for HistoryClientStatus
impl Unpin for HistoryClientStatus
impl UnwindSafe for HistoryClientStatus
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