pub struct CausalChain {
pub bead_id: String,
pub title: String,
pub status: String,
pub events: Vec<CausalEvent>,
pub edge_count: usize,
pub start_time: String,
pub end_time: String,
pub is_complete: bool,
}Fields§
§bead_id: String§title: String§status: String§events: Vec<CausalEvent>§edge_count: usize§start_time: String§end_time: String§is_complete: boolTrait Implementations§
Source§impl Clone for CausalChain
impl Clone for CausalChain
Source§fn clone(&self) -> CausalChain
fn clone(&self) -> CausalChain
Returns a duplicate of the value. Read more
1.0.0 · 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 CausalChain
impl Debug for CausalChain
Auto Trait Implementations§
impl Freeze for CausalChain
impl RefUnwindSafe for CausalChain
impl Send for CausalChain
impl Sync for CausalChain
impl Unpin for CausalChain
impl UnsafeUnpin for CausalChain
impl UnwindSafe for CausalChain
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