pub struct ClientDetailsResponse {
pub id: Uuid,
pub name: String,
pub client_type: String,
pub ip_address: Option<String>,
pub connected_at: Option<String>,
pub access: Value,
pub extra: HashMap<String, Value>,
}Expand description
Client details — extends overview with additional fields.
Fields§
§id: Uuid§name: String§client_type: String§ip_address: Option<String>§connected_at: Option<String>§access: Value§extra: HashMap<String, Value>Catch-all for additional fields not modeled above.
Trait Implementations§
Source§impl Clone for ClientDetailsResponse
impl Clone for ClientDetailsResponse
Source§fn clone(&self) -> ClientDetailsResponse
fn clone(&self) -> ClientDetailsResponse
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 ClientDetailsResponse
impl Debug for ClientDetailsResponse
Source§impl<'de> Deserialize<'de> for ClientDetailsResponse
impl<'de> Deserialize<'de> for ClientDetailsResponse
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 ClientDetailsResponse
impl PartialEq for ClientDetailsResponse
Source§impl Serialize for ClientDetailsResponse
impl Serialize for ClientDetailsResponse
impl StructuralPartialEq for ClientDetailsResponse
Auto Trait Implementations§
impl Freeze for ClientDetailsResponse
impl RefUnwindSafe for ClientDetailsResponse
impl Send for ClientDetailsResponse
impl Sync for ClientDetailsResponse
impl Unpin for ClientDetailsResponse
impl UnsafeUnpin for ClientDetailsResponse
impl UnwindSafe for ClientDetailsResponse
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