[][src]Struct abi_stable::type_level_bool::True

pub struct True;

Represents a type-level true

Trait Implementations

impl Default for True[src]

impl Debug for True[src]

impl Copy for True[src]

impl Clone for True[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<B> BitOr<B> for True[src]

type Output = True

The resulting type after applying the | operator.

impl<B> BitXor<B> for True where
    B: Boolean
[src]

type Output = <B as Boolean>::Not

The resulting type after applying the ^ operator.

impl Not for True[src]

type Output = False

The resulting type after applying the ! operator.

impl<B> BitAnd<B> for True[src]

type Output = B

The resulting type after applying the & operator.

impl MarkerType for True[src]

const MTVAL: Self[src]

The value of Self.

default fn markertype_ref<'a>() -> &'a Self where
    Self: 'a, 
[src]

Constructs a reference to Self, this is possible because all references to zero sized types are valid. Read more

default fn markertype_val() -> Self[src]

Constructs Self,this is possible because Self implements MarkerType.

impl Boolean for True[src]

type Not = False

The negation of this type.

default fn if_false<U, F>(F) -> Option<U> where
    F: FnOnce() -> U, 
[src]

If Self==False,runs the closure and returns Some , otherwise returns None.

impl<T, P> VTableFieldValue<extern "C" fn(&P) -> P, True, T, P> for Clone where
    P: Clone
[src]

impl<T, P> VTableFieldValue<extern "C" fn() -> P, True, T, P> for Default where
    P: Default
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, FormattingMode, &mut RString) -> RResult<(), ()>, True, T, P> for Display where
    T: Display
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, FormattingMode, &mut RString) -> RResult<(), ()>, True, T, P> for Debug where
    T: Debug
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T) -> RResult<RCow<str>, RBoxError_<SyncSend>>, True, T, P> for Serialize where
    T: ImplType + SerializeImplType,
    T::Interface: InterfaceType<Serialize = True>, 
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, &T) -> bool, True, T, P> for PartialEq where
    T: PartialEq
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, &T) -> RCmpOrdering, True, T, P> for Ord where
    T: Ord
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, &T) -> ROption<RCmpOrdering>, True, T, P> for PartialOrd where
    T: PartialOrd
[src]

impl<T, P> VTableFieldValue<extern "C" fn(&T, HasherTraitObject<&mut OpaqueType<()>>), True, T, P> for Hash where
    T: Hash
[src]

Auto Trait Implementations

impl Send for True

impl Sync for True

Blanket Implementations

impl<T> MakeGetAbiInfo for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> TypeIdentity for T where
    T: ?Sized
[src]

type Type = T

The same type as Self. Read more

default fn into_type_val(self) -> Self::Type where
    Self::Type: Sized
[src]

Converts a value back to the original type.

default fn into_type_ref(&self) -> &Self::Type[src]

Converts a reference back to the original type.

default fn into_type_mut(&mut self) -> &mut Self::Type[src]

Converts a mutable reference back to the original type.

default fn into_type_box(self: Box<Self>) -> Box<Self::Type>[src]

Converts a box back to the original type.

default fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>[src]

Converts an Arc back to the original type.

default fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>[src]

Converts an Rc back to the original type.

default fn from_type_val(this: Self::Type) -> Self where
    Self::Type: Sized
[src]

Converts a value back to the original type.

default fn from_type_ref(this: &Self::Type) -> &Self[src]

Converts a reference back to the original type.

default fn from_type_mut(this: &mut Self::Type) -> &mut Self[src]

Converts a mutable reference back to the original type.

default fn from_type_box(this: Box<Self::Type>) -> Box<Self>[src]

Converts a box back to the original type.

default fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>[src]

Converts an Arc back to the original type.

default fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>[src]

Converts an Rc back to the original type.

impl<T> SelfOps for T where
    T: ?Sized
[src]

const T: PhantomData<fn() -> Self>[src]

Represents Self by using a VariantPhantom, using the syntax Type::T to pass it in methods with _:VariantPhantom<T> parameters. Read more

const T_D: PhantomData<Self>[src]

Represents Self by using a VariantDropPhantom,for specialized cases. Read more

default fn assert_ty(self, _other: PhantomData<fn() -> Self>) -> Self[src]

Asserts that other is the same type as self.

default fn assert_ty_ref(&self, _other: PhantomData<fn() -> Self>) -> &Self[src]

Asserts that other is the same type as self.

default fn assert_ty_mut(
    &mut self,
    _other: PhantomData<fn() -> Self>
) -> &mut Self
[src]

Asserts that other is the same type as self.

default fn ty_(&self) -> PhantomData<fn() -> Self>[src]

Equivalent to SelfOps::T,as a method. Read more

default fn ty_d(&self) -> PhantomData<Self>[src]

Equivalent to [Self::ty_],for specialized cases. Read more

default fn ty_inv(&self) -> PhantomData<fn(Self) -> Self>[src]

Equivalent to [Self::ty_] with an invariant type.

default fn ty_inv_ref(&self) -> PhantomData<Cell<&Self>>[src]

Equivalent to [Self::ty_] with an invariant lifetime.

default fn eq_id(&self, other: &Self) -> bool[src]

Identity comparison to another value of the same type. Read more

default fn piped<F, U>(self, f: F) -> U where
    F: FnOnce(Self) -> U, 
[src]

Emulates the pipeline operator,allowing method syntax in more places. Read more

default fn piped_ref<'a, F, U>(&'a self, f: F) -> U where
    F: FnOnce(&'a Self) -> U, 
[src]

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more

default fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U where
    F: FnOnce(&'a mut Self) -> U, 
[src]

The same as piped except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self. Read more

default fn mutated<F>(self, f: F) -> Self where
    F: FnOnce(&mut Self), 
[src]

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more

default fn observe<F>(self, f: F) -> Self where
    F: FnOnce(&Self), 
[src]

Observes the value of self passing it along unmodified. Useful in a long method chain. Read more

default fn into_<T>(self, PhantomData<fn() -> T>) -> T where
    Self: Into<T>, 
[src]

Performs a conversion using Into. Read more

default fn as_ref_<T>(&self) -> &T where
    Self: AsRef<T>,
    T: ?Sized
[src]

Performs a reference to reference conversion using AsRef, using the turbofish .as_ref_::<_>() syntax. Read more

default fn as_mut_<T>(&mut self) -> &mut T where
    Self: AsMut<T>,
    T: ?Sized
[src]

Performs a mutable reference to mutable reference conversion using AsMut, using the turbofish .as_mut_::<_>() syntax. Read more

default fn drop_(self)[src]

Drops self using method notation. Alternative to std::mem::drop. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> Erased for T