pub enum RecursingArbitraryStep<AS> {
Default,
Initialized(AS),
}
Variants§
Trait Implementations§
Source§impl<AS: Clone> Clone for RecursingArbitraryStep<AS>
impl<AS: Clone> Clone for RecursingArbitraryStep<AS>
Source§fn clone(&self) -> RecursingArbitraryStep<AS>
fn clone(&self) -> RecursingArbitraryStep<AS>
Returns a duplicate 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<AS> Freeze for RecursingArbitraryStep<AS>where
AS: Freeze,
impl<AS> RefUnwindSafe for RecursingArbitraryStep<AS>where
AS: RefUnwindSafe,
impl<AS> Send for RecursingArbitraryStep<AS>where
AS: Send,
impl<AS> Sync for RecursingArbitraryStep<AS>where
AS: Sync,
impl<AS> Unpin for RecursingArbitraryStep<AS>where
AS: Unpin,
impl<AS> UnwindSafe for RecursingArbitraryStep<AS>where
AS: 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