Struct aerospike::Record [] [src]

pub struct Record {
    pub key: Option<Key>,
    pub bins: HashMap<String, Value>,
    pub generation: u32,
    // some fields omitted
}

Container object for a database record.

Fields

Record key. When reading a record from the database, the key is not set in the returned Record struct.

Map of named record bins.

Record modification count.

Methods

impl Record
[src]

Returns the remaining time-to-live (TTL, a.k.a. expiration time) for the record or None if the record never expires.

Trait Implementations

impl Debug for Record
[src]

Formats the value using the given formatter.

impl Display for Record
[src]

Formats the value using the given formatter. Read more