[−][src]Enum rtlola_interpreter::Value
The general type for holding all kinds of values.
Variants
Expresses the absence of a value.
Bool(bool)A boolean value.
Unsigned(u64)An unsigned integer with 64 bits.
Signed(i64)A signed integer with 64 bits.
A double-precision floating-point number that is not NaN.
A tuple of Values.
The nested values can be of different type.
A string that must be utf-8 encoded.
A slice of bytes.
Trait Implementations
impl Add<Value> for Value[src]
type Output = Value
The resulting type after applying the + operator.
fn add(self, other: Value) -> Value[src]
impl BitAnd<Value> for Value[src]
type Output = Value
The resulting type after applying the & operator.
fn bitand(self, other: Value) -> Value[src]
impl BitOr<Value> for Value[src]
type Output = Value
The resulting type after applying the | operator.
fn bitor(self, other: Value) -> Value[src]
impl BitXor<Value> for Value[src]
type Output = Value
The resulting type after applying the ^ operator.
fn bitxor(self, other: Value) -> Value[src]
impl Clone for Value[src]
impl Debug for Value[src]
impl Div<Value> for Value[src]
type Output = Value
The resulting type after applying the / operator.
fn div(self, other: Value) -> Value[src]
impl Eq for Value[src]
impl Hash for Value[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Mul<Value> for Value[src]
type Output = Value
The resulting type after applying the * operator.
fn mul(self, other: Value) -> Value[src]
impl Neg for Value[src]
impl Not for Value[src]
impl Ord for Value[src]
fn cmp(&self, other: &Self) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Value> for Value[src]
impl PartialOrd<Value> for Value[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Rem<Value> for Value[src]
type Output = Value
The resulting type after applying the % operator.
fn rem(self, other: Value) -> Value[src]
impl Shl<Value> for Value[src]
type Output = Value
The resulting type after applying the << operator.
fn shl(self, other: Value) -> Value[src]
impl Shr<Value> for Value[src]
type Output = Value
The resulting type after applying the >> operator.
fn shr(self, other: Value) -> Value[src]
impl StructuralEq for Value[src]
impl StructuralPartialEq for Value[src]
impl Sub<Value> for Value[src]
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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,
fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, [src]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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.
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>,