Skip to main content

IntoBind

Trait IntoBind 

Source
pub trait IntoBind {
    // Required method
    fn into_bind(self) -> Value;
}
Expand description

Conversion of a Rust value into a bound Value.

Required Methods§

Source

fn into_bind(self) -> Value

Convert self into a Value.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoBind for &String

Source§

impl IntoBind for &[u8]

Source§

impl IntoBind for &str

Source§

impl IntoBind for DateTime<Utc>

Available on crate feature chrono only.
Source§

impl IntoBind for Decimal

Available on crate feature decimal only.
Source§

impl IntoBind for NaiveDate

Available on crate feature chrono only.
Source§

impl IntoBind for NaiveDateTime

Available on crate feature chrono only.
Source§

impl IntoBind for NaiveTime

Available on crate feature chrono only.
Source§

impl IntoBind for String

Source§

impl IntoBind for Uuid

Available on crate feature uuid only.
Source§

impl IntoBind for Value

Available on crate feature json only.
Source§

impl IntoBind for Vec<u8>

Source§

impl IntoBind for bool

Source§

impl IntoBind for f32

Source§

impl IntoBind for f64

Source§

impl IntoBind for i8

Source§

impl IntoBind for i16

Source§

impl IntoBind for i32

Source§

impl IntoBind for i64

Source§

impl IntoBind for isize

Source§

impl IntoBind for u8

Source§

impl IntoBind for u16

Source§

impl IntoBind for u32

Source§

impl IntoBind for u64

Source§

impl IntoBind for usize

Source§

impl<T: IntoBind> IntoBind for Option<T>

Implementors§

Source§

impl IntoBind for chain_builder::value::Value