Enum sqlite::Value

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

A value.

Variants§

§

Binary(Vec<u8>)

Binary data.

§

Float(f64)

A floating-point number.

§

Integer(i64)

An integer number.

§

String(String)

A string.

§

Null

A null value.

Implementations§

source§

impl Value

source

pub fn kind(&self) -> Type

Return the type.

source

pub fn try_into<'l, T>(&'l self) -> Result<T>
where T: TryFrom<&'l Value, Error = Error>,

Try to return the value.

Trait Implementations§

source§

impl BindableWithIndex for &Value

source§

fn bind<T: ParameterIndex>( self, statement: &mut Statement<'_>, index: T ) -> Result<()>

Bind to a parameter. Read more
source§

impl BindableWithIndex for Value

source§

fn bind<T: ParameterIndex>( self, statement: &mut Statement<'_>, index: T ) -> Result<()>

Bind to a parameter. Read more
source§

impl Clone for Value

source§

fn clone(&self) -> Value

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Value

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Value

source§

fn default() -> Value

Returns the “default value” for a type. Read more
source§

impl From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<()> for Value

source§

fn from(_: ()) -> Self

Converts to this type from the input type.
source§

impl<T> From<Option<T>> for Value
where T: Into<Value>, Value: From<T>,

source§

fn from(value: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ReadableWithIndex for Value

source§

fn read<T: ColumnIndex>(statement: &Statement<'_>, index: T) -> Result<Self>

Read from a column. Read more
source§

impl<'l> TryFrom<&'l Value> for &'l [u8]

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &'l Value) -> Result<Self>

Performs the conversion.
source§

impl<'l> TryFrom<&'l Value> for &'l str

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &'l Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<&Value> for ()

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &Value) -> Result<Self>

Performs the conversion.
source§

impl<'l> TryFrom<&'l Value> for Option<&'l [u8]>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &'l Value) -> Result<Self>

Performs the conversion.
source§

impl<'l> TryFrom<&'l Value> for Option<&'l str>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &'l Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<&Value> for Option<f64>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<&Value> for Option<i64>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<&Value> for f64

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<&Value> for i64

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Value> for Option<String>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Value> for Option<Vec<u8>>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Value> for String

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: Value) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Value> for Vec<u8>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: Value) -> Result<Self>

Performs the conversion.
source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.