[][src]Struct core_extensions::type_level_bool::False

pub struct False;

Represents a type-level false

Trait Implementations

impl MarkerType for False[src]

const MTVAL: Self[src]

The value of Self.

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

fn markertype_val() -> Self[src]

Constructs Self,this is possible because Self implements MarkerType.

impl Boolean for False[src]

type Not = True

The negation of this type.

fn if_true<U, F: FnOnce() -> U>(_: F) -> Option<U>[src]

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

impl Copy for False[src]

impl Clone for False[src]

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

Performs copy-assignment from source. Read more

impl Default for False[src]

impl Not for False[src]

type Output = True

The resulting type after applying the ! operator.

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

type Output = False

The resulting type after applying the & operator.

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

type Output = B

The resulting type after applying the | operator.

impl<B> BitXor<B> for False[src]

type Output = B

The resulting type after applying the ^ operator.

impl Debug for False[src]

Auto Trait Implementations

impl Send for False

impl Sync for False

Blanket Implementations

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> From for T[src]

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

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

type Owned = T

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> 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> Any for T where
    T: 'static + ?Sized
[src]