pub struct ChildEntry {
pub child_id: String,
pub subagent_type: String,
pub status: ChildStatus,
pub title: String,
pub responsibility: String,
pub updated_at: DateTime<Utc>,
}Fields§
§child_id: String§subagent_type: String§status: ChildStatus§title: String§responsibility: String§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ChildEntry
impl Clone for ChildEntry
Source§fn clone(&self) -> ChildEntry
fn clone(&self) -> ChildEntry
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 ChildEntry
impl Debug for ChildEntry
Source§impl<'de> Deserialize<'de> for ChildEntry
impl<'de> Deserialize<'de> for ChildEntry
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 ChildEntry
impl PartialEq for ChildEntry
Source§fn eq(&self, other: &ChildEntry) -> bool
fn eq(&self, other: &ChildEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChildEntry
impl Serialize for ChildEntry
impl StructuralPartialEq for ChildEntry
Auto Trait Implementations§
impl Freeze for ChildEntry
impl RefUnwindSafe for ChildEntry
impl Send for ChildEntry
impl Sync for ChildEntry
impl Unpin for ChildEntry
impl UnsafeUnpin for ChildEntry
impl UnwindSafe for ChildEntry
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