Struct tinychain::scalar::Boolean[]

pub struct Boolean(_);

A boolean value.

Trait Implementations

impl Add<Boolean> for Boolean

type Output = Boolean

The resulting type after applying the + operator.

impl AddAssign<Boolean> for Boolean

impl CastFrom<Complex> for Boolean

impl CastFrom<Float> for Boolean

impl CastFrom<Int> for Boolean

impl CastFrom<Number> for Boolean

impl Clone for Boolean

impl Copy for Boolean

impl Debug for Boolean

impl Default for Boolean

impl Display for Boolean

impl Div<Boolean> for Boolean

type Output = Boolean

The resulting type after applying the / operator.

impl DivAssign<Boolean> for Boolean

impl Eq for Boolean

impl From<Boolean> for Complex

impl From<Boolean> for UInt

impl From<Boolean> for Float

impl From<Boolean> for Number

impl From<Boolean> for Int

impl From<bool> for Boolean

impl<'en> IntoStream<'en> for Boolean

impl Mul<Boolean> for Boolean

type Output = Boolean

The resulting type after applying the * operator.

impl MulAssign<Boolean> for Boolean

impl NumberInstance for Boolean

type Abs = Boolean

type Exp = Boolean

type Class = BooleanType

impl Ord for Boolean

impl PartialEq<Boolean> for Boolean

impl PartialOrd<Boolean> for Boolean

impl Product<Boolean> for Boolean

impl Serialize for Boolean

impl StructuralPartialEq for Boolean

impl Sub<Boolean> for Boolean

type Output = Boolean

The resulting type after applying the - operator.

impl SubAssign<Boolean> for Boolean

impl Sum<Boolean> for Boolean

impl<'en> ToStream<'en> for Boolean

Auto Trait Implementations

impl RefUnwindSafe for Boolean

impl Send for Boolean

impl Sync for Boolean

impl Unpin for Boolean

impl UnwindSafe for Boolean

Blanket Implementations

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

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

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

impl<F, T> CastFrom<F> for T where
    T: From<F>, 
[src]

impl<T, F> CastInto<F> for T where
    F: CastFrom<T>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<F> Match for F[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<F, T> TryCastFrom<F> for T where
    T: CastFrom<F>, 
[src]

impl<F, T> TryCastInto<T> for F where
    T: TryCastFrom<F>, 
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,