Enum postgres_protocol::message::frontend::BindError [] [src]

pub enum BindError {
    Conversion(Box<Error + Sync + Send>),
    Serialization(Error),
}

Variants

Conversion(Box<Error + Sync + Send>)Serialization(Error)

Trait Implementations

impl From<Box<Error + Sync + Send>> for BindError
[src]

fn from(e: Box<Error + Sync + Send>) -> BindError[]

Performs the conversion.

impl From<Error> for BindError
[src]

fn from(e: Error) -> BindError[]

Performs the conversion.