pub struct SessionBinding {
pub session_id: String,
pub profile_name: Option<String>,
pub station_name: Option<String>,
pub model: Option<String>,
pub reasoning_effort: Option<String>,
pub service_tier: Option<String>,
pub continuity_mode: SessionContinuityMode,
pub created_at_ms: u64,
pub updated_at_ms: u64,
pub last_seen_ms: u64,
}Fields§
§session_id: String§profile_name: Option<String>§station_name: Option<String>§model: Option<String>§reasoning_effort: Option<String>§service_tier: Option<String>§continuity_mode: SessionContinuityMode§created_at_ms: u64§updated_at_ms: u64§last_seen_ms: u64Trait Implementations§
Source§impl Clone for SessionBinding
impl Clone for SessionBinding
Source§fn clone(&self) -> SessionBinding
fn clone(&self) -> SessionBinding
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 SessionBinding
impl Debug for SessionBinding
Source§impl<'de> Deserialize<'de> for SessionBinding
impl<'de> Deserialize<'de> for SessionBinding
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 SessionBinding
impl PartialEq for SessionBinding
Source§fn eq(&self, other: &SessionBinding) -> bool
fn eq(&self, other: &SessionBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionBinding
impl Serialize for SessionBinding
impl Eq for SessionBinding
impl StructuralPartialEq for SessionBinding
Auto Trait Implementations§
impl Freeze for SessionBinding
impl RefUnwindSafe for SessionBinding
impl Send for SessionBinding
impl Sync for SessionBinding
impl Unpin for SessionBinding
impl UnsafeUnpin for SessionBinding
impl UnwindSafe for SessionBinding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.