pub struct NewSessionOptions {
pub id: Option<String>,
pub parent_session: Option<String>,
}Expand description
Options for creating a new session.
Fields§
§id: Option<String>§parent_session: Option<String>Trait Implementations§
Source§impl Clone for NewSessionOptions
impl Clone for NewSessionOptions
Source§fn clone(&self) -> NewSessionOptions
fn clone(&self) -> NewSessionOptions
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 NewSessionOptions
impl Debug for NewSessionOptions
Source§impl Default for NewSessionOptions
impl Default for NewSessionOptions
Source§fn default() -> NewSessionOptions
fn default() -> NewSessionOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NewSessionOptions
impl RefUnwindSafe for NewSessionOptions
impl Send for NewSessionOptions
impl Sync for NewSessionOptions
impl Unpin for NewSessionOptions
impl UnsafeUnpin for NewSessionOptions
impl UnwindSafe for NewSessionOptions
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