pub struct OxiosGroupAgent {
pub id: Uuid,
pub seed: Seed,
pub status: OxiosAgentGroupStatus,
pub result: Option<String>,
}Expand description
A single agent’s entry in a group.
Fields§
§id: UuidUnique ID for this group agent.
seed: SeedThe child seed this agent executes.
status: OxiosAgentGroupStatusCurrent status.
result: Option<String>Result output (when completed).
Trait Implementations§
Source§impl Clone for OxiosGroupAgent
impl Clone for OxiosGroupAgent
Source§fn clone(&self) -> OxiosGroupAgent
fn clone(&self) -> OxiosGroupAgent
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 OxiosGroupAgent
impl Debug for OxiosGroupAgent
Source§impl<'de> Deserialize<'de> for OxiosGroupAgent
impl<'de> Deserialize<'de> for OxiosGroupAgent
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 OxiosGroupAgent
impl RefUnwindSafe for OxiosGroupAgent
impl Send for OxiosGroupAgent
impl Sync for OxiosGroupAgent
impl Unpin for OxiosGroupAgent
impl UnsafeUnpin for OxiosGroupAgent
impl UnwindSafe for OxiosGroupAgent
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