Struct ql2::Term[][src]

pub struct Term {
    pub type: Option<i32>,
    pub datum: Option<Datum>,
    pub args: Vec<Term>,
    pub optargs: Vec<AssocPair>,
}

A Term is either a piece of data (see Datum above), or an operator and its operands. If you have a Datum, it’s stored in the member datum. If you have an operator, its positional arguments are stored in [args] and its optional arguments are stored in [optargs].

A note about type signatures: We use the following notation to denote types: arg1_type, arg2_type, argrest_type… -> result_type So, for example, if we have a function avg that takes any number of arguments and averages them, we might write: NUMBER… -> NUMBER Or if we had a function that took one number modulo another: NUMBER, NUMBER -> NUMBER Or a function that takes a table and a primary key of any Datum type, then retrieves the entry with that primary key: Table, DATUM -> OBJECT Some arguments must be provided as literal values (and not the results of sub terms). These are marked with a !. Optional arguments are specified within curly braces as argname : value type (e.x {noreply:BOOL}) Many RQL operations are polymorphic. For these, alterantive type signatures are separated by |.

The RQL type hierarchy is as follows: Top DATUM NULL BOOL NUMBER STRING OBJECT SingleSelection ARRAY Sequence ARRAY Stream StreamSelection Table Database Function Ordering - used only by ORDER_BY Pathspec – an object, string, or array that specifies a path Error

Fields

type: Option<i32>datum: Option<Datum>

This is only used when type is DATUM.

args: Vec<Term>

Holds the positional arguments of the query.

optargs: Vec<AssocPair>

Holds the optional arguments of the query.

Implementations

impl Term[src]

pub fn type(&self) -> TermType[src]

Returns the enum value of type, or the default if the field is unset or set to an invalid enum value.

pub fn set_type(&mut self, value: TermType)[src]

Sets type to the provided enum value.

Trait Implementations

impl Clone for Term[src]

impl Debug for Term[src]

impl Default for Term[src]

impl<'de> Deserialize<'de> for Term[src]

impl Message for Term[src]

impl PartialEq<Term> for Term[src]

impl Serialize for Term[src]

impl StructuralPartialEq for Term[src]

Auto Trait Implementations

impl RefUnwindSafe for Term

impl Send for Term

impl Sync for Term

impl Unpin for Term

impl UnwindSafe for Term

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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.