Enum aerospike::Bins [] [src]

pub enum Bins<'a> {
    All,
    None,
    Some(&'a [&'a str]),
}

Specify which, if any, bins to return in read operations.

Variants

Read all bins.

Read record header (generation, expiration) only.

Read specified bin names only.

Methods

impl<'a> Bins<'a>
[src]

Returns true if the bins selector is an All value.

Returns true if the bins selector is a None value.

Trait Implementations

impl<'a> Debug for Bins<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for Bins<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for Bins<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> Eq for Bins<'a>
[src]

impl<'a> From<&'a [&'a str]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a Vec<&'a str>> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 1]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 2]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 3]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 4]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 5]> for Bins<'a>
[src]

Performs the conversion.

impl<'a> From<&'a [&'a str; 6]> for Bins<'a>
[src]

Performs the conversion.