[][src]Trait wasccgraph_common::FromCell

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

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

Required methods

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

Loading content...

Implementations on Foreign Types

impl FromCell for ()[src]

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

impl FromCell for bool[src]

impl FromCell for u8[src]

impl FromCell for u16[src]

impl FromCell for u32[src]

impl FromCell for u64[src]

impl FromCell for usize[src]

impl FromCell for i8[src]

impl FromCell for i16[src]

impl FromCell for i32[src]

impl FromCell for i64[src]

impl FromCell for isize[src]

impl FromCell for f32[src]

impl FromCell for f64[src]

impl FromCell for String[src]

Loading content...

Implementors

impl FromCell for Scalar[src]

impl FromCell for GraphString[src]

impl FromCell for Node[src]

impl FromCell for Relation[src]

Loading content...