pub enum RelationshipKind {
CausedBy,
DelegatedFrom,
RetryOf,
ScheduledBy,
DerivedFrom,
JoinedFrom,
}Expand description
Relationship between a BCX event and one of its parents.
Variants§
CausedBy
The parent directly caused this event.
DelegatedFrom
The event was delegated by the parent.
RetryOf
The event retries the parent.
ScheduledBy
The event was scheduled by the parent.
DerivedFrom
The event was derived from the parent.
JoinedFrom
The event joins several parent branches.
Trait Implementations§
Source§impl Clone for RelationshipKind
impl Clone for RelationshipKind
Source§fn clone(&self) -> RelationshipKind
fn clone(&self) -> RelationshipKind
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 moreimpl Copy for RelationshipKind
Source§impl Debug for RelationshipKind
impl Debug for RelationshipKind
impl Eq for RelationshipKind
Source§impl PartialEq for RelationshipKind
impl PartialEq for RelationshipKind
Source§fn eq(&self, other: &RelationshipKind) -> bool
fn eq(&self, other: &RelationshipKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RelationshipKind
Auto Trait Implementations§
impl Freeze for RelationshipKind
impl RefUnwindSafe for RelationshipKind
impl Send for RelationshipKind
impl Sync for RelationshipKind
impl Unpin for RelationshipKind
impl UnsafeUnpin for RelationshipKind
impl UnwindSafe for RelationshipKind
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