[][src]Struct aerospike::Statement

pub struct Statement {
    pub namespace: String,
    pub set_name: String,
    pub index_name: Option<String>,
    pub bins: Bins,
    pub filters: Option<Vec<Filter>>,
    pub aggregation: Option<Aggregation>,
}

Query statement parameters.

Fields

namespace: String

Namespace

set_name: String

Set name

index_name: Option<String>

Optional index name

bins: Bins

Optional list of bin names to return in query.

filters: Option<Vec<Filter>>

Optional list of query filters. Currently, only one filter is allowed by the server on a secondary index lookup.

aggregation: Option<Aggregation>

Optional Lua aggregation function parameters.

Methods

impl Statement[src]

pub fn new(namespace: &str, set_name: &str, bins: Bins) -> Self[src]

Create a new query statement with the given namespace, set name and optional list of bin names.

Examples

Create a new statement to query the namespace "foo" and set "bar" and return the "name" and "age" bins for each matching record.


let stmt = Statement::new("foo", "bar", Bins::from(["name", "age"]));

pub fn add_filter(&mut self, filter: Filter)[src]

Add a query filter to the statement. Currently, only one filter is allowed by the server on a secondary index lookup.

Example

This example uses a numeric index on bin baz in namespace foo within set bar to find all records using a filter with the range 0 to 100 inclusive:


let mut stmt = Statement::new("foo", "bar", Bins::from(["name", "age"]));
stmt.add_filter(as_range!("baz", 0, 100));

pub fn set_aggregate_function(
    &mut self,
    package_name: &str,
    function_name: &str,
    function_args: Option<&[Value]>
)
[src]

Set Lua aggregation function parameters.

Trait Implementations

impl Clone for Statement[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,