pub struct GetLastSessionIdResponse {
pub session_id: Option<SessionId>,
}Expand description
Response from session.getLastId.
Fields§
§session_id: Option<SessionId>The most recently updated session ID, or None if no sessions exist.
Trait Implementations§
Source§impl Clone for GetLastSessionIdResponse
impl Clone for GetLastSessionIdResponse
Source§fn clone(&self) -> GetLastSessionIdResponse
fn clone(&self) -> GetLastSessionIdResponse
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 GetLastSessionIdResponse
impl Debug for GetLastSessionIdResponse
Source§impl<'de> Deserialize<'de> for GetLastSessionIdResponse
impl<'de> Deserialize<'de> for GetLastSessionIdResponse
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
Auto Trait Implementations§
impl Freeze for GetLastSessionIdResponse
impl RefUnwindSafe for GetLastSessionIdResponse
impl Send for GetLastSessionIdResponse
impl Sync for GetLastSessionIdResponse
impl Unpin for GetLastSessionIdResponse
impl UnsafeUnpin for GetLastSessionIdResponse
impl UnwindSafe for GetLastSessionIdResponse
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