pub struct BatchPoseidonTree<P: Poseidon + Default> { /* private fields */ }
Trait Implementations§
source§impl<P: Clone + Poseidon + Default> Clone for BatchPoseidonTree<P>
impl<P: Clone + Poseidon + Default> Clone for BatchPoseidonTree<P>
source§fn clone(&self) -> BatchPoseidonTree<P>
fn clone(&self) -> BatchPoseidonTree<P>
Returns a copy 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 moresource§impl<P: Default + Poseidon + Default> Default for BatchPoseidonTree<P>
impl<P: Default + Poseidon + Default> Default for BatchPoseidonTree<P>
source§fn default() -> BatchPoseidonTree<P>
fn default() -> BatchPoseidonTree<P>
Returns the “default value” for a type. Read more
source§impl<P> IsMerkleTreeBackend for BatchPoseidonTree<P>
impl<P> IsMerkleTreeBackend for BatchPoseidonTree<P>
type Node = FieldElement<<P as PermutationParameters>::F>
type Data = Vec<FieldElement<<P as PermutationParameters>::F>>
source§fn hash_data(input: &Vec<FieldElement<P::F>>) -> FieldElement<P::F>
fn hash_data(input: &Vec<FieldElement<P::F>>) -> FieldElement<P::F>
This function takes a single variable
Data
and converts it to a node.source§fn hash_new_parent(
left: &FieldElement<P::F>,
right: &FieldElement<P::F>,
) -> FieldElement<P::F>
fn hash_new_parent( left: &FieldElement<P::F>, right: &FieldElement<P::F>, ) -> FieldElement<P::F>
This function takes to children nodes and builds a new parent node.
It will be used in the construction of the Merkle tree.
Auto Trait Implementations§
impl<P> Freeze for BatchPoseidonTree<P>
impl<P> RefUnwindSafe for BatchPoseidonTree<P>where
P: RefUnwindSafe,
impl<P> Send for BatchPoseidonTree<P>where
P: Send,
impl<P> Sync for BatchPoseidonTree<P>where
P: Sync,
impl<P> Unpin for BatchPoseidonTree<P>where
P: Unpin,
impl<P> UnwindSafe for BatchPoseidonTree<P>where
P: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)