#[repr(C)]pub struct IsPackableVariant_EVbool<V, E> {
pub e: E,
pub v: V,
pub ok: bool,
pub _phantom_0: PhantomData<UnsafeCell<V>>,
pub _phantom_1: PhantomData<UnsafeCell<E>>,
}
Fields§
§e: E
§v: V
§ok: bool
§_phantom_0: PhantomData<UnsafeCell<V>>
§_phantom_1: PhantomData<UnsafeCell<E>>
Trait Implementations§
source§impl<V: Clone, E: Clone> Clone for IsPackableVariant_EVbool<V, E>
impl<V: Clone, E: Clone> Clone for IsPackableVariant_EVbool<V, E>
source§fn clone(&self) -> IsPackableVariant_EVbool<V, E>
fn clone(&self) -> IsPackableVariant_EVbool<V, E>
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 moresource§impl<V: PartialEq, E: PartialEq> PartialEq for IsPackableVariant_EVbool<V, E>
impl<V: PartialEq, E: PartialEq> PartialEq for IsPackableVariant_EVbool<V, E>
source§fn eq(&self, other: &IsPackableVariant_EVbool<V, E>) -> bool
fn eq(&self, other: &IsPackableVariant_EVbool<V, E>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<V: Copy, E: Copy> Copy for IsPackableVariant_EVbool<V, E>
impl<V, E> StructuralPartialEq for IsPackableVariant_EVbool<V, E>
Auto Trait Implementations§
impl<V, E> Freeze for IsPackableVariant_EVbool<V, E>
impl<V, E> !RefUnwindSafe for IsPackableVariant_EVbool<V, E>
impl<V, E> Send for IsPackableVariant_EVbool<V, E>
impl<V, E> !Sync for IsPackableVariant_EVbool<V, E>
impl<V, E> Unpin for IsPackableVariant_EVbool<V, E>
impl<V, E> UnwindSafe for IsPackableVariant_EVbool<V, E>where
E: UnwindSafe,
V: 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
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
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