pub struct MixerProofPayload {Show 14 fields
pub exponentiation: i8,
pub width: usize,
pub curve: Curve,
pub backend: Backend,
pub secret: Vec<u8>,
pub nullifier: Vec<u8>,
pub recipient: Vec<u8>,
pub relayer: Vec<u8>,
pub pk: Vec<u8>,
pub refund: u128,
pub fee: u128,
pub chain_id: u128,
pub leaves: Vec<Vec<u8>>,
pub leaf_index: u64,
}Fields§
§exponentiation: i8§width: usize§curve: Curve§backend: Backend§secret: Vec<u8>§nullifier: Vec<u8>§recipient: Vec<u8>§relayer: Vec<u8>§pk: Vec<u8>§refund: u128§fee: u128§chain_id: u128§leaves: Vec<Vec<u8>>§leaf_index: u64Trait Implementations§
Source§impl Clone for MixerProofPayload
impl Clone for MixerProofPayload
Source§fn clone(&self) -> MixerProofPayload
fn clone(&self) -> MixerProofPayload
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MixerProofPayload
impl RefUnwindSafe for MixerProofPayload
impl Send for MixerProofPayload
impl Sync for MixerProofPayload
impl Unpin for MixerProofPayload
impl UnwindSafe for MixerProofPayload
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