pub struct PlaygroundAgentState {
pub agent_id: String,
pub tenant_id: String,
pub nodes: Vec<Map<String, Value>>,
pub edges: Vec<Map<String, Value>>,
pub metadata: Map<String, Value>,
pub updated_at: String,
}Expand description
The visual-builder canvas of an agent as GET /playground/agents/{agentId} serves it (measured 2026-09-10 on e2e-canon); PUT returns the same shape after the write.
Fields§
§agent_id: String§tenant_id: String§nodes: Vec<Map<String, Value>>§edges: Vec<Map<String, Value>>§metadata: Map<String, Value>§updated_at: StringTrait Implementations§
Source§impl Clone for PlaygroundAgentState
impl Clone for PlaygroundAgentState
Source§fn clone(&self) -> PlaygroundAgentState
fn clone(&self) -> PlaygroundAgentState
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 PlaygroundAgentState
impl Debug for PlaygroundAgentState
Source§impl Default for PlaygroundAgentState
impl Default for PlaygroundAgentState
Source§fn default() -> PlaygroundAgentState
fn default() -> PlaygroundAgentState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlaygroundAgentState
impl<'de> Deserialize<'de> for PlaygroundAgentState
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 PlaygroundAgentState
impl PartialEq for PlaygroundAgentState
Source§impl Serialize for PlaygroundAgentState
impl Serialize for PlaygroundAgentState
impl StructuralPartialEq for PlaygroundAgentState
Auto Trait Implementations§
impl Freeze for PlaygroundAgentState
impl RefUnwindSafe for PlaygroundAgentState
impl Send for PlaygroundAgentState
impl Sync for PlaygroundAgentState
impl Unpin for PlaygroundAgentState
impl UnsafeUnpin for PlaygroundAgentState
impl UnwindSafe for PlaygroundAgentState
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