pub struct ChildSummary {
pub id: String,
pub title: String,
pub status: String,
pub attempts: usize,
pub recent_outcome: Option<String>,
pub summary: Option<String>,
pub follow_up: Option<String>,
}Expand description
Concise parent-oriented summary of a direct child unit.
Fields§
§id: String§title: String§status: String§attempts: usize§recent_outcome: Option<String>§summary: Option<String>§follow_up: Option<String>Trait Implementations§
Source§impl Clone for ChildSummary
impl Clone for ChildSummary
Source§fn clone(&self) -> ChildSummary
fn clone(&self) -> ChildSummary
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 ChildSummary
impl Debug for ChildSummary
Source§impl PartialEq for ChildSummary
impl PartialEq for ChildSummary
Source§fn eq(&self, other: &ChildSummary) -> bool
fn eq(&self, other: &ChildSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChildSummary
impl Serialize for ChildSummary
impl StructuralPartialEq for ChildSummary
Auto Trait Implementations§
impl Freeze for ChildSummary
impl RefUnwindSafe for ChildSummary
impl Send for ChildSummary
impl Sync for ChildSummary
impl Unpin for ChildSummary
impl UnsafeUnpin for ChildSummary
impl UnwindSafe for ChildSummary
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