Trait ion::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>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl ParseRow for Row

§

type Err = ()