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