pub struct RunAgentUiRuntimeRequest {
pub thread_id: Option<String>,
pub run_id: Option<String>,
pub workspace_id: Option<String>,
pub current_surface: Option<String>,
pub state: Option<HashMap<String, Value>>,
pub messages: Option<Option<Value>>,
}Fields§
§thread_id: Option<String>§run_id: Option<String>§workspace_id: Option<String>§current_surface: Option<String>§state: Option<HashMap<String, Value>>§messages: Option<Option<Value>>Implementations§
Source§impl RunAgentUiRuntimeRequest
impl RunAgentUiRuntimeRequest
pub fn new() -> RunAgentUiRuntimeRequest
Trait Implementations§
Source§impl Clone for RunAgentUiRuntimeRequest
impl Clone for RunAgentUiRuntimeRequest
Source§fn clone(&self) -> RunAgentUiRuntimeRequest
fn clone(&self) -> RunAgentUiRuntimeRequest
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 RunAgentUiRuntimeRequest
impl Debug for RunAgentUiRuntimeRequest
Source§impl Default for RunAgentUiRuntimeRequest
impl Default for RunAgentUiRuntimeRequest
Source§fn default() -> RunAgentUiRuntimeRequest
fn default() -> RunAgentUiRuntimeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunAgentUiRuntimeRequest
impl<'de> Deserialize<'de> for RunAgentUiRuntimeRequest
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 RunAgentUiRuntimeRequest
impl PartialEq for RunAgentUiRuntimeRequest
Source§fn eq(&self, other: &RunAgentUiRuntimeRequest) -> bool
fn eq(&self, other: &RunAgentUiRuntimeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RunAgentUiRuntimeRequest
impl Serialize for RunAgentUiRuntimeRequest
impl StructuralPartialEq for RunAgentUiRuntimeRequest
Auto Trait Implementations§
impl Freeze for RunAgentUiRuntimeRequest
impl RefUnwindSafe for RunAgentUiRuntimeRequest
impl Send for RunAgentUiRuntimeRequest
impl Sync for RunAgentUiRuntimeRequest
impl Unpin for RunAgentUiRuntimeRequest
impl UnsafeUnpin for RunAgentUiRuntimeRequest
impl UnwindSafe for RunAgentUiRuntimeRequest
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