pub struct GetSessionRequest {
pub app_name: String,
pub user_id: String,
pub session_id: String,
pub config: Option<Value>,
}Expand description
The parameters for getSession.
Fields§
§app_name: StringThe name of the application.
user_id: StringThe ID of the user.
session_id: StringThe ID of the session.
config: Option<Value>The configurations for getting the session.
Trait Implementations§
Source§impl Clone for GetSessionRequest
impl Clone for GetSessionRequest
Source§fn clone(&self) -> GetSessionRequest
fn clone(&self) -> GetSessionRequest
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 GetSessionRequest
impl Debug for GetSessionRequest
Source§impl Default for GetSessionRequest
impl Default for GetSessionRequest
Source§fn default() -> GetSessionRequest
fn default() -> GetSessionRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSessionRequest
impl RefUnwindSafe for GetSessionRequest
impl Send for GetSessionRequest
impl Sync for GetSessionRequest
impl Unpin for GetSessionRequest
impl UnwindSafe for GetSessionRequest
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