pub struct ParticipantMapping {
pub participant: Id,
pub path: String,
}Expand description
Mapping from a participant into a witness path.
Fields§
§participant: IdParticipant identifier being mapped.
path: StringStructured path inside the participant payload.
Trait Implementations§
Source§impl Clone for ParticipantMapping
impl Clone for ParticipantMapping
Source§fn clone(&self) -> ParticipantMapping
fn clone(&self) -> ParticipantMapping
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 ParticipantMapping
impl Debug for ParticipantMapping
Source§impl<'de> Deserialize<'de> for ParticipantMapping
impl<'de> Deserialize<'de> for ParticipantMapping
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 ParticipantMapping
impl Hash for ParticipantMapping
Source§impl Ord for ParticipantMapping
impl Ord for ParticipantMapping
Source§fn cmp(&self, other: &ParticipantMapping) -> Ordering
fn cmp(&self, other: &ParticipantMapping) -> 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 ParticipantMapping
impl PartialEq for ParticipantMapping
Source§fn eq(&self, other: &ParticipantMapping) -> bool
fn eq(&self, other: &ParticipantMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ParticipantMapping
impl PartialOrd for ParticipantMapping
Source§impl Serialize for ParticipantMapping
impl Serialize for ParticipantMapping
impl Eq for ParticipantMapping
impl StructuralPartialEq for ParticipantMapping
Auto Trait Implementations§
impl Freeze for ParticipantMapping
impl RefUnwindSafe for ParticipantMapping
impl Send for ParticipantMapping
impl Sync for ParticipantMapping
impl Unpin for ParticipantMapping
impl UnsafeUnpin for ParticipantMapping
impl UnwindSafe for ParticipantMapping
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