pub enum SpongeOp {
Absorb(u32),
Squeeze(u32),
}Expand description
The SpongeWord type is lifted straight from the Neptune codebase.
See <https://github.com/filecoin-project/neptune/blob/master/src/sponge/api.rs>
Variants§
Trait Implementations§
impl Copy for SpongeOp
impl StructuralPartialEq for SpongeOp
Auto Trait Implementations§
impl Freeze for SpongeOp
impl RefUnwindSafe for SpongeOp
impl Send for SpongeOp
impl Sync for SpongeOp
impl Unpin for SpongeOp
impl UnwindSafe for SpongeOp
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