pub struct GetConnectionResponse {
pub connected_at: Option<f64>,
pub identity: Option<Identity>,
pub last_active_at: Option<f64>,
}
Fields§
§connected_at: Option<f64>
The time in ISO 8601 format for when the connection was established.
identity: Option<Identity>
§last_active_at: Option<f64>
The time in ISO 8601 format for when the connection was last active.
Trait Implementations§
Source§impl Clone for GetConnectionResponse
impl Clone for GetConnectionResponse
Source§fn clone(&self) -> GetConnectionResponse
fn clone(&self) -> GetConnectionResponse
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 GetConnectionResponse
impl Debug for GetConnectionResponse
Source§impl Default for GetConnectionResponse
impl Default for GetConnectionResponse
Source§fn default() -> GetConnectionResponse
fn default() -> GetConnectionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetConnectionResponse
impl<'de> Deserialize<'de> for GetConnectionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetConnectionResponse
impl PartialEq for GetConnectionResponse
impl StructuralPartialEq for GetConnectionResponse
Auto Trait Implementations§
impl Freeze for GetConnectionResponse
impl RefUnwindSafe for GetConnectionResponse
impl Send for GetConnectionResponse
impl Sync for GetConnectionResponse
impl Unpin for GetConnectionResponse
impl UnwindSafe for GetConnectionResponse
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