pub enum ParticipantMetadataRecord<'a> {
V0 {
contract: ParticipantContractRecord<'a>,
},
}Expand description
Its variants and renames mirror
ParticipantMetadata exactly - that
is the point: a record written through this type is, by construction, a
document the parser accepts.
Variants§
V0
Fields
§
contract: ParticipantContractRecord<'a>Trait Implementations§
Source§impl<'a> Clone for ParticipantMetadataRecord<'a>
impl<'a> Clone for ParticipantMetadataRecord<'a>
Source§fn clone(&self) -> ParticipantMetadataRecord<'a>
fn clone(&self) -> ParticipantMetadataRecord<'a>
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<'a> Debug for ParticipantMetadataRecord<'a>
impl<'a> Debug for ParticipantMetadataRecord<'a>
Source§impl DescribeWire for ParticipantMetadataRecord<'_>
impl DescribeWire for ParticipantMetadataRecord<'_>
Source§fn wire_schema() -> WireSchema
fn wire_schema() -> WireSchema
The shape a value of this type puts on the wire.
Source§impl<'a> PartialEq for ParticipantMetadataRecord<'a>
impl<'a> PartialEq for ParticipantMetadataRecord<'a>
Source§impl<'a> Serialize for ParticipantMetadataRecord<'a>
impl<'a> Serialize for ParticipantMetadataRecord<'a>
impl<'a> StructuralPartialEq for ParticipantMetadataRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for ParticipantMetadataRecord<'a>
impl<'a> RefUnwindSafe for ParticipantMetadataRecord<'a>
impl<'a> Send for ParticipantMetadataRecord<'a>
impl<'a> Sync for ParticipantMetadataRecord<'a>
impl<'a> Unpin for ParticipantMetadataRecord<'a>
impl<'a> UnsafeUnpin for ParticipantMetadataRecord<'a>
impl<'a> UnwindSafe for ParticipantMetadataRecord<'a>
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