pub enum ProofField {
Name(String),
Number(u64),
}Variants§
Trait Implementations§
Source§impl Clone for ProofField
impl Clone for ProofField
Source§fn clone(&self) -> ProofField
fn clone(&self) -> ProofField
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 ProofField
impl Debug for ProofField
Source§impl<'de> Deserialize<'de> for ProofField
impl<'de> Deserialize<'de> for ProofField
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
impl Eq for ProofField
Source§impl PartialEq for ProofField
impl PartialEq for ProofField
Source§impl Serialize for ProofField
impl Serialize for ProofField
impl StructuralPartialEq for ProofField
Auto Trait Implementations§
impl Freeze for ProofField
impl RefUnwindSafe for ProofField
impl Send for ProofField
impl Sync for ProofField
impl Unpin for ProofField
impl UnsafeUnpin for ProofField
impl UnwindSafe for ProofField
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