[][src]Enum boa::value::AbstractRelation

pub enum AbstractRelation {
    True,
    False,
    Undefined,
}

The result of the Abstract Relational Comparison.

Comparison x < y, where x and y are values. It produces true, false, or undefined (which indicates that at least one operand is NaN).

Variants

True

x is less than y

False

x is not less than y

Undefined

Indicates that at least one operand is NaN

Trait Implementations

impl Clone for AbstractRelation[src]

impl Copy for AbstractRelation[src]

impl Debug for AbstractRelation[src]

impl Eq for AbstractRelation[src]

impl From<bool> for AbstractRelation[src]

impl Ord for AbstractRelation[src]

impl PartialEq<AbstractRelation> for AbstractRelation[src]

impl PartialOrd<AbstractRelation> for AbstractRelation[src]

impl StructuralEq for AbstractRelation[src]

impl StructuralPartialEq for AbstractRelation[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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>,