Enum sqlite3::Value [] [src]

pub enum Value {
    Binary(Vec<u8>),
    Float(f64),
    Integer(i64),
    String(String),
    Null,
}

A typed value.

Variants

Binary data.

A floating-point number.

An integer number.

A string.

A null value.

Methods

impl Value
[src]

[src]

Return the binary data if the value is Binary.

[src]

Return the floating-point number if the value is Float.

[src]

Return the integer number if the value is Integer.

[src]

Return the string if the value is String.

[src]

Return the type.

Trait Implementations

impl<'l> Bindable for &'l Value
[src]

[src]

Bind to a parameter. Read more

impl Readable for Value
[src]

[src]

Read from a column. Read more

impl Clone for Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Value
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Value

impl Sync for Value