pub struct StartSessionResult {
pub session_token: Option<String>,
}Expand description
Contains the details of the started session.
Fields§
§session_token: Option<String>Session token of the started session. This SessionToken is required for every subsequent command that is issued during the current session.
Trait Implementations§
Source§impl Clone for StartSessionResult
impl Clone for StartSessionResult
Source§fn clone(&self) -> StartSessionResult
fn clone(&self) -> StartSessionResult
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 StartSessionResult
impl Debug for StartSessionResult
Source§impl Default for StartSessionResult
impl Default for StartSessionResult
Source§fn default() -> StartSessionResult
fn default() -> StartSessionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartSessionResult
impl<'de> Deserialize<'de> for StartSessionResult
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 StartSessionResult
impl PartialEq for StartSessionResult
impl StructuralPartialEq for StartSessionResult
Auto Trait Implementations§
impl Freeze for StartSessionResult
impl RefUnwindSafe for StartSessionResult
impl Send for StartSessionResult
impl Sync for StartSessionResult
impl Unpin for StartSessionResult
impl UnwindSafe for StartSessionResult
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