Struct aerospike::query::Statement

source ·
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>,
}
Expand description

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.

Implementations§

source§

impl Statement

source

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

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"]));
source

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

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));
source

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

Set Lua aggregation function parameters.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V