[][src]Trait wasccgraph_common::FromRow

pub trait FromRow: Sized {
    fn from_row(result_set: &ResultSet, row_idx: usize) -> GraphResult<Self>;
}

Implemented by types that can be constructed from a row in a ResultSet.

Required methods

fn from_row(result_set: &ResultSet, row_idx: usize) -> GraphResult<Self>

Loading content...

Implementors

impl<T: FromCell> FromRow for T[src]

Loading content...