Enum aerospike::FloatValue[][src]

pub enum FloatValue {
    F32(u32),
    F64(u64),
}

Container for floating point bin values stored in the Aerospike database.

Variants

Container for single precision float values.

Container for double precision float values.

Trait Implementations

impl Debug for FloatValue
[src]

Formats the value using the given formatter. Read more

impl Clone for FloatValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FloatValue
[src]

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

This method tests for !=.

impl Eq for FloatValue
[src]

impl Hash for FloatValue
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl From<FloatValue> for f64
[src]

Performs the conversion.

impl<'a> From<&'a FloatValue> for f64
[src]

Performs the conversion.

impl From<f64> for FloatValue
[src]

Performs the conversion.

impl<'a> From<&'a f64> for FloatValue
[src]

Performs the conversion.

impl From<FloatValue> for f32
[src]

Performs the conversion.

impl<'a> From<&'a FloatValue> for f32
[src]

Performs the conversion.

impl From<f32> for FloatValue
[src]

Performs the conversion.

impl<'a> From<&'a f32> for FloatValue
[src]

Performs the conversion.

impl Display for FloatValue
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FloatValue

impl Sync for FloatValue