Struct tc_value::Boolean [−][src]
A boolean value.
Trait Implementations
impl Add<Boolean> for Boolean[src]
type Output = Boolean
The resulting type after applying the + operator.
pub fn add(self, other: Boolean) -> <Boolean as Add<Boolean>>::Output[src]
impl AddAssign<Boolean> for Boolean[src]
pub fn add_assign(&mut self, other: Boolean)[src]
impl CastFrom<Complex> for Boolean[src]
impl CastFrom<Float> for Boolean[src]
impl CastFrom<Int> for Boolean[src]
impl CastFrom<Number> for Boolean[src]
impl Clone for Boolean[src]
impl Copy for Boolean[src]
impl Debug for Boolean[src]
impl Default for Boolean[src]
impl Display for Boolean[src]
impl Div<Boolean> for Boolean[src]
type Output = Boolean
The resulting type after applying the / operator.
pub fn div(self, other: Boolean) -> <Boolean as Div<Boolean>>::Output[src]
impl DivAssign<Boolean> for Boolean[src]
pub fn div_assign(&mut self, other: Boolean)[src]
impl Eq for Boolean[src]
impl From<Boolean> for Complex[src]
impl From<Boolean> for Int[src]
impl From<Boolean> for Number[src]
impl From<Boolean> for UInt[src]
impl From<Boolean> for Float[src]
impl From<bool> for Boolean[src]
impl<'en> IntoStream<'en> for Boolean[src]
pub fn into_stream<E>(
self,
e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
E: Encoder<'en>, [src]
self,
e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
E: Encoder<'en>,
impl Mul<Boolean> for Boolean[src]
type Output = Boolean
The resulting type after applying the * operator.
pub fn mul(self, other: Boolean) -> Boolean[src]
impl MulAssign<Boolean> for Boolean[src]
pub fn mul_assign(&mut self, other: Boolean)[src]
impl NumberInstance for Boolean[src]
type Abs = Boolean
type Exp = Boolean
type Class = BooleanType
pub fn class(&self) -> BooleanType[src]
pub fn into_type(self, _dtype: BooleanType) -> Boolean[src]
pub fn abs(self) -> Boolean[src]
pub fn pow(self, exp: Boolean) -> Boolean[src]
pub fn and(self, other: Boolean) -> Boolean[src]
pub fn not(self) -> Boolean[src]
pub fn or(self, other: Boolean) -> Boolean[src]
pub fn xor(self, other: Boolean) -> Boolean[src]
impl Ord for Boolean[src]
pub fn cmp(&self, other: &Boolean) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Boolean> for Boolean[src]
impl PartialOrd<Boolean> for Boolean[src]
pub fn partial_cmp(&self, other: &Boolean) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Product<Boolean> for Boolean[src]
impl Serialize for Boolean[src]
pub fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
impl StructuralPartialEq for Boolean[src]
impl Sub<Boolean> for Boolean[src]
type Output = Boolean
The resulting type after applying the - operator.
pub fn sub(self, other: Boolean) -> <Boolean as Sub<Boolean>>::Output[src]
impl SubAssign<Boolean> for Boolean[src]
pub fn sub_assign(&mut self, other: Boolean)[src]
impl Sum<Boolean> for Boolean[src]
impl<'en> ToStream<'en> for Boolean[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<F, T> CastFrom<F> for T where
T: From<F>, [src]
T: From<F>,
impl<T, F> CastInto<F> for T where
F: CastFrom<T>, [src]
F: CastFrom<T>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<F> Match for F[src]
pub fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]
T: TryCastFrom<Self>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]
T: CastFrom<F>,
pub fn can_cast_from(&F) -> bool[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]
OnErr: FnOnce(&T) -> Err,
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]
T: TryCastFrom<F>,
pub fn can_cast_into(&self) -> bool[src]
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]
OnErr: FnOnce(&Self) -> Err,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,