pub struct SessionSettingsModelSnapshot {
pub callback_url: Option<String>,
pub default_reasoning_effort: Option<String>,
pub instance_id: Option<String>,
pub model: Option<String>,
}Expand description
Redacted model routing settings for a session.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§callback_url: Option<String>Agent service callback URL for job and progress updates.
default_reasoning_effort: Option<String>Default reasoning effort for the selected model.
instance_id: Option<String>Agent job identifier for the session.
model: Option<String>Selected model identifier.
Trait Implementations§
Source§impl Clone for SessionSettingsModelSnapshot
impl Clone for SessionSettingsModelSnapshot
Source§impl Debug for SessionSettingsModelSnapshot
impl Debug for SessionSettingsModelSnapshot
Source§impl<'de> Deserialize<'de> for SessionSettingsModelSnapshot
impl<'de> Deserialize<'de> for SessionSettingsModelSnapshot
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 SessionSettingsModelSnapshot
impl RefUnwindSafe for SessionSettingsModelSnapshot
impl Send for SessionSettingsModelSnapshot
impl Sync for SessionSettingsModelSnapshot
impl Unpin for SessionSettingsModelSnapshot
impl UnsafeUnpin for SessionSettingsModelSnapshot
impl UnwindSafe for SessionSettingsModelSnapshot
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