Trait mem_query::record::FromRecordUnchecked[][src]

pub trait FromRecordUnchecked<'a>: Sized {
    fn from_ref_unchecked(_: &impl ExternalRecord<'a>) -> Self;
}

Required methods

fn from_ref_unchecked(_: &impl ExternalRecord<'a>) -> Self[src]

Implementations on Foreign Types

impl<'a> FromRecordUnchecked<'a> for HNil[src]

fn from_ref_unchecked(_: &impl ExternalRecord<'a>) -> Self[src]

impl<'a, H: Col, T: FromRecordUnchecked<'a>> FromRecordUnchecked<'a> for HCons<&'a H, T>[src]

fn from_ref_unchecked(r: &impl ExternalRecord<'a>) -> Self[src]

Implementors