pub struct Poseidon<E: Environment, const RATE: usize> { /* private fields */ }
Implementations§
Source§impl<E: Environment, const RATE: usize> Poseidon<E, RATE>
impl<E: Environment, const RATE: usize> Poseidon<E, RATE>
Sourcepub fn parameters(&self) -> &Arc<PoseidonParameters<E::Field, RATE, CAPACITY>>
pub fn parameters(&self) -> &Arc<PoseidonParameters<E::Field, RATE, CAPACITY>>
Returns the Poseidon parameters for hashing.
Trait Implementations§
Source§impl<E: Environment, const RATE: usize> HashToGroup for Poseidon<E, RATE>
impl<E: Environment, const RATE: usize> HashToGroup for Poseidon<E, RATE>
Source§impl<E: Environment, const RATE: usize> HashToScalar for Poseidon<E, RATE>
impl<E: Environment, const RATE: usize> HashToScalar for Poseidon<E, RATE>
impl<E: Environment, const RATE: usize> StructuralPartialEq for Poseidon<E, RATE>
Auto Trait Implementations§
impl<E, const RATE: usize> Freeze for Poseidon<E, RATE>
impl<E, const RATE: usize> RefUnwindSafe for Poseidon<E, RATE>
impl<E, const RATE: usize> Send for Poseidon<E, RATE>
impl<E, const RATE: usize> Sync for Poseidon<E, RATE>
impl<E, const RATE: usize> Unpin for Poseidon<E, RATE>
impl<E, const RATE: usize> UnwindSafe for Poseidon<E, RATE>
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more