Trait sonnerie_api::FromValue[][src]

pub trait FromValue {
    fn serialize(&self, to: &mut Write) -> Result<()>;
}

This trait is implemented for the numeric types that Sonnerie supports.

Sonnerie's API accepts this type in places where any column value is acceptable. (The server checks for compatibility)

Required Methods

Implementations on Foreign Types

impl FromValue for f64
[src]

impl FromValue for f32
[src]

impl FromValue for u64
[src]

impl FromValue for u32
[src]

impl FromValue for i64
[src]

impl FromValue for i32
[src]

Implementors