pub struct Discriminant<T>(/* private fields */);
Expand description
Opaque type representing the discriminant of an enum.
See the discriminant
function in this module for more information.
Trait Implementations§
Source§impl<A> Arbitrary for Discriminant<A>where
A: Arbitrary,
impl<A> Arbitrary for Discriminant<A>where
A: Arbitrary,
Source§type Parameters = <A as Arbitrary>::Parameters
type Parameters = <A as Arbitrary>::Parameters
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.Source§type Strategy = Map<<A as Arbitrary>::Strategy, fn(_: A) -> Discriminant<A>>
type Strategy = Map<<A as Arbitrary>::Strategy, fn(_: A) -> Discriminant<A>>
The type of
Strategy
used to generate values of type Self
.Source§fn arbitrary_with(
args: <Discriminant<A> as Arbitrary>::Parameters,
) -> <Discriminant<A> as Arbitrary>::Strategy
fn arbitrary_with( args: <Discriminant<A> as Arbitrary>::Parameters, ) -> <Discriminant<A> as Arbitrary>::Strategy
Source§impl<A> ArbitraryF1<A> for Discriminant<A>where
A: Debug + 'static,
impl<A> ArbitraryF1<A> for Discriminant<A>where
A: Debug + 'static,
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
lift1_with
accepts for
configuration of the lifted and generated Strategy
. Parameters
must implement Default
.Source§fn lift1_with<S>(
base: S,
_args: <Discriminant<A> as ArbitraryF1<A>>::Parameters,
) -> BoxedStrategy<Discriminant<A>>where
S: Strategy<Value = A> + 'static,
fn lift1_with<S>(
base: S,
_args: <Discriminant<A> as ArbitraryF1<A>>::Parameters,
) -> BoxedStrategy<Discriminant<A>>where
S: Strategy<Value = A> + 'static,
1.21.0 · Source§impl<T> Clone for Discriminant<T>
impl<T> Clone for Discriminant<T>
Source§fn clone(&self) -> Discriminant<T>
fn clone(&self) -> Discriminant<T>
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 more1.21.0 · Source§impl<T> Debug for Discriminant<T>
impl<T> Debug for Discriminant<T>
1.21.0 · Source§impl<T> Hash for Discriminant<T>
impl<T> Hash for Discriminant<T>
1.21.0 · Source§impl<T> PartialEq for Discriminant<T>
impl<T> PartialEq for Discriminant<T>
impl<T> Copy for Discriminant<T>
impl<T> Eq for Discriminant<T>
Auto Trait Implementations§
impl<T> Freeze for Discriminant<T>
impl<T> RefUnwindSafe for Discriminant<T>
impl<T> Send for Discriminant<T>
impl<T> Sync for Discriminant<T>
impl<T> Unpin for Discriminant<T>
impl<T> UnwindSafe for Discriminant<T>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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