[][src]Enum aerospike::Bins

pub enum Bins {
    All,
    None,
    Some(Vec<String>),
}

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

Variants

All

Read all bins.

None

Read record header (generation, expiration) only.

Some(Vec<String>)

Read specified bin names only.

Methods

impl Bins[src]

pub fn is_all(&self) -> bool[src]

Returns true if the bins selector is an All value.

pub fn is_none(&self) -> bool[src]

Returns true if the bins selector is a None value.

Trait Implementations

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

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

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

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

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

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

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

impl Clone for Bins[src]

impl Eq for Bins[src]

impl PartialEq<Bins> for Bins[src]

impl Debug for Bins[src]

impl StructuralPartialEq for Bins[src]

impl StructuralEq for Bins[src]

Auto Trait Implementations

impl Send for Bins

impl Sync for Bins

impl Unpin for Bins

impl UnwindSafe for Bins

impl RefUnwindSafe for Bins

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