pub struct SpawnedAgentEntry {
pub id: String,
pub name: String,
pub spec_yaml: String,
}Expand description
Minimal record of a spawned agent for session persistence.
Fields§
§id: String§name: String§spec_yaml: StringTrait Implementations§
Source§impl Clone for SpawnedAgentEntry
impl Clone for SpawnedAgentEntry
Source§fn clone(&self) -> SpawnedAgentEntry
fn clone(&self) -> SpawnedAgentEntry
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 SpawnedAgentEntry
impl Debug for SpawnedAgentEntry
Source§impl<'de> Deserialize<'de> for SpawnedAgentEntry
impl<'de> Deserialize<'de> for SpawnedAgentEntry
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 SpawnedAgentEntry
impl RefUnwindSafe for SpawnedAgentEntry
impl Send for SpawnedAgentEntry
impl Sync for SpawnedAgentEntry
impl Unpin for SpawnedAgentEntry
impl UnsafeUnpin for SpawnedAgentEntry
impl UnwindSafe for SpawnedAgentEntry
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