Struct lambdaworks_crypto::merkle_tree::backends::field_element::TreePoseidon
source · pub struct TreePoseidon<P: Poseidon + Default> { /* private fields */ }
Trait Implementations§
source§impl<P: Clone + Poseidon + Default> Clone for TreePoseidon<P>
impl<P: Clone + Poseidon + Default> Clone for TreePoseidon<P>
source§fn clone(&self) -> TreePoseidon<P>
fn clone(&self) -> TreePoseidon<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 TreePoseidon<P>
impl<P: Default + Poseidon + Default> Default for TreePoseidon<P>
source§fn default() -> TreePoseidon<P>
fn default() -> TreePoseidon<P>
Returns the “default value” for a type. Read more
source§impl<P> IsMerkleTreeBackend for TreePoseidon<P>
impl<P> IsMerkleTreeBackend for TreePoseidon<P>
type Node = FieldElement<<P as PermutationParameters>::F>
type Data = FieldElement<<P as PermutationParameters>::F>
source§fn hash_data(input: &FieldElement<P::F>) -> FieldElement<P::F>
fn hash_data(input: &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 TreePoseidon<P>
impl<P> RefUnwindSafe for TreePoseidon<P>where
P: RefUnwindSafe,
impl<P> Send for TreePoseidon<P>where
P: Send,
impl<P> Sync for TreePoseidon<P>where
P: Sync,
impl<P> Unpin for TreePoseidon<P>where
P: Unpin,
impl<P> UnwindSafe for TreePoseidon<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
)