pub enum SpongeState {
Absorbed(usize),
Squeezed(usize),
}
Variants§
Trait Implementations§
Source§impl Clone for SpongeState
impl Clone for SpongeState
Source§fn clone(&self) -> SpongeState
fn clone(&self) -> SpongeState
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 moreAuto Trait Implementations§
impl Freeze for SpongeState
impl RefUnwindSafe for SpongeState
impl Send for SpongeState
impl Sync for SpongeState
impl Unpin for SpongeState
impl UnwindSafe for SpongeState
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