pub struct LoadSessionRequest {
pub mcp_servers: Vec<McpServer>,
pub cwd: PathBuf,
pub session_id: SessionId,
pub meta: Option<Value>,
}
Expand description
Request parameters for loading an existing session.
Only available if the Agent supports the loadSession
capability.
See protocol docs: Loading Sessions
Fields§
§mcp_servers: Vec<McpServer>
List of MCP servers to connect to for this session.
cwd: PathBuf
The working directory for this session.
session_id: SessionId
The ID of the session to load.
meta: Option<Value>
Extension point for implementations
Trait Implementations§
Source§impl Clone for LoadSessionRequest
impl Clone for LoadSessionRequest
Source§fn clone(&self) -> LoadSessionRequest
fn clone(&self) -> LoadSessionRequest
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 LoadSessionRequest
impl Debug for LoadSessionRequest
Source§impl<'de> Deserialize<'de> for LoadSessionRequest
impl<'de> Deserialize<'de> for LoadSessionRequest
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 JsonSchema for LoadSessionRequest
impl JsonSchema for LoadSessionRequest
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for LoadSessionRequest
impl RefUnwindSafe for LoadSessionRequest
impl Send for LoadSessionRequest
impl Sync for LoadSessionRequest
impl Unpin for LoadSessionRequest
impl UnwindSafe for LoadSessionRequest
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