Trait ParseRow

Source
pub trait ParseRow
where Self: Sized,
{ type Err; // Required method fn parse<F: FromRow>(&self) -> Result<F, F::Err>; }

Required Associated Types§

Required Methods§

Source

fn parse<F: FromRow>(&self) -> Result<F, F::Err>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§