Struct tc_value::Boolean [−][src]
pub struct Boolean(_);
Expand description
A boolean value.
Trait Implementations
impl AddAssign<Boolean> for Boolean[src]
impl AddAssign<Boolean> for Boolean[src]pub fn add_assign(&mut self, other: Boolean)[src]
pub fn add_assign(&mut self, other: Boolean)[src]Performs the += operation. Read more
impl DivAssign<Boolean> for Boolean[src]
impl DivAssign<Boolean> for Boolean[src]pub fn div_assign(&mut self, other: Boolean)[src]
pub fn div_assign(&mut self, other: Boolean)[src]Performs the /= operation. Read more
impl<'en> IntoStream<'en> for Boolean[src]
impl<'en> IntoStream<'en> for Boolean[src]impl MulAssign<Boolean> for Boolean[src]
impl MulAssign<Boolean> for Boolean[src]pub fn mul_assign(&mut self, other: Boolean)[src]
pub fn mul_assign(&mut self, other: Boolean)[src]Performs the *= operation. Read more
impl NumberInstance for Boolean[src]
impl NumberInstance for Boolean[src]type Abs = Boolean
type Exp = Boolean
type Class = BooleanType
pub fn class(&self) -> BooleanType[src]
pub fn class(&self) -> BooleanType[src]Get an impl of NumberClass describing this number.
pub fn into_type(self, _dtype: BooleanType) -> Boolean[src]
pub fn into_type(self, _dtype: BooleanType) -> Boolean[src]Cast this number into the specified NumberClass.
impl Ord for Boolean[src]
impl Ord for Boolean[src]impl PartialOrd<Boolean> for Boolean[src]
impl PartialOrd<Boolean> for Boolean[src]pub fn partial_cmp(&self, other: &Boolean) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &Boolean) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Serialize 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]
pub fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl SubAssign<Boolean> for Boolean[src]
impl SubAssign<Boolean> for Boolean[src]pub fn sub_assign(&mut self, other: Boolean)[src]
pub fn sub_assign(&mut self, other: Boolean)[src]Performs the -= operation. Read more
impl Copy for Boolean[src]
impl Eq for Boolean[src]
impl StructuralPartialEq 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> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<F> Match for F[src]
impl<F> Match for F[src]fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]
fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]Returns true if self can be cast into the target type T.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]pub fn can_cast_from(&F) -> bool[src]
pub fn can_cast_from(&F) -> bool[src]Test if value can be cast into Self.
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]Returns Some(Self) if the source value can be cast into Self, otherwise None.
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]pub fn can_cast_into(&self) -> bool[src]
pub fn can_cast_into(&self) -> bool[src]Test if self can be cast into T.
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn opt_cast_into(self) -> Option<T>[src]Returns Some(T) if self can be cast into T, otherwise None.
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]Returns Ok(T) if self can be cast into T, otherwise calls on_err.