pub struct SessionLogonResponseResult {
pub api_key: Option<String>,
pub authorized_since: Option<i64>,
pub connected_since: Option<i64>,
pub return_rate_limits: Option<bool>,
pub server_time: Option<i64>,
pub user_data_stream: Option<bool>,
}Fields§
§api_key: Option<String>§connected_since: Option<i64>§return_rate_limits: Option<bool>§server_time: Option<i64>§user_data_stream: Option<bool>Implementations§
Source§impl SessionLogonResponseResult
impl SessionLogonResponseResult
pub fn new() -> SessionLogonResponseResult
Trait Implementations§
Source§impl Clone for SessionLogonResponseResult
impl Clone for SessionLogonResponseResult
Source§fn clone(&self) -> SessionLogonResponseResult
fn clone(&self) -> SessionLogonResponseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SessionLogonResponseResult
impl Debug for SessionLogonResponseResult
Source§impl Default for SessionLogonResponseResult
impl Default for SessionLogonResponseResult
Source§fn default() -> SessionLogonResponseResult
fn default() -> SessionLogonResponseResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionLogonResponseResult
impl<'de> Deserialize<'de> for SessionLogonResponseResult
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 SessionLogonResponseResult
impl PartialEq for SessionLogonResponseResult
Source§fn eq(&self, other: &SessionLogonResponseResult) -> bool
fn eq(&self, other: &SessionLogonResponseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionLogonResponseResult
Auto Trait Implementations§
impl Freeze for SessionLogonResponseResult
impl RefUnwindSafe for SessionLogonResponseResult
impl Send for SessionLogonResponseResult
impl Sync for SessionLogonResponseResult
impl Unpin for SessionLogonResponseResult
impl UnsafeUnpin for SessionLogonResponseResult
impl UnwindSafe for SessionLogonResponseResult
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