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]

[src]

Formats the value using the given formatter.

impl Clone for FloatValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FloatValue
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for FloatValue
[src]

impl Hash for FloatValue
[src]

[src]

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

1.3.0
[src]

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

impl From<f64> for FloatValue
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl From<f32> for FloatValue
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl Display for FloatValue
[src]

[src]

Formats the value using the given formatter. Read more