pub enum ParticipantRef {
Cell(Id),
Complex(Id),
Context(Id),
Projection(Id),
Claim(Id),
Evidence(Id),
Invariant(Id),
Obstruction(Id),
CompletionCandidate(Id),
}Expand description
Reference to a structure that participates in a correspondence.
Variants§
Cell(Id)
Cell participant.
Complex(Id)
Complex participant.
Context(Id)
Context participant.
Projection(Id)
Projection participant.
Claim(Id)
Claim participant.
Evidence(Id)
Evidence participant.
Invariant(Id)
Invariant participant.
Obstruction(Id)
Obstruction participant.
CompletionCandidate(Id)
Completion candidate participant.
Implementations§
Trait Implementations§
Source§impl Clone for ParticipantRef
impl Clone for ParticipantRef
Source§fn clone(&self) -> ParticipantRef
fn clone(&self) -> ParticipantRef
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 ParticipantRef
impl Debug for ParticipantRef
Source§impl<'de> Deserialize<'de> for ParticipantRef
impl<'de> Deserialize<'de> for ParticipantRef
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 Hash for ParticipantRef
impl Hash for ParticipantRef
Source§impl Ord for ParticipantRef
impl Ord for ParticipantRef
Source§fn cmp(&self, other: &ParticipantRef) -> Ordering
fn cmp(&self, other: &ParticipantRef) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ParticipantRef
impl PartialEq for ParticipantRef
Source§fn eq(&self, other: &ParticipantRef) -> bool
fn eq(&self, other: &ParticipantRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ParticipantRef
impl PartialOrd for ParticipantRef
Source§impl Serialize for ParticipantRef
impl Serialize for ParticipantRef
impl Eq for ParticipantRef
impl StructuralPartialEq for ParticipantRef
Auto Trait Implementations§
impl Freeze for ParticipantRef
impl RefUnwindSafe for ParticipantRef
impl Send for ParticipantRef
impl Sync for ParticipantRef
impl Unpin for ParticipantRef
impl UnsafeUnpin for ParticipantRef
impl UnwindSafe for ParticipantRef
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