pub enum Proofs {
SingleProof(Box<Proof>),
SetOfProofs(Box<Vec<Proof>>),
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Proofs
impl<'de> Deserialize<'de> for Proofs
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 StructuralPartialEq for Proofs
Auto Trait Implementations§
impl Freeze for Proofs
impl RefUnwindSafe for Proofs
impl Send for Proofs
impl Sync for Proofs
impl Unpin for Proofs
impl UnwindSafe for Proofs
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