Trait FromRow

Source
pub trait FromRow
where Self: Sized,
{ type Err; // Required method fn from_str_iter<'a, I>(row: I) -> Result<Self, Self::Err> where I: Iterator<Item = &'a Value>; }

Required Associated Types§

Required Methods§

Source

fn from_str_iter<'a, I>(row: I) -> Result<Self, Self::Err>
where I: Iterator<Item = &'a Value>,

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§