Trait mem_query::record::BorrowRecord[][src]

pub trait BorrowRecord {
    type Cols: Header;
    type Inner: Record<Cols = Self::Cols> + ?Sized;
    fn borrow_rec(&self) -> &Self::Inner;
}

Associated Types

type Cols: Header[src]

type Inner: Record<Cols = Self::Cols> + ?Sized[src]

Required methods

fn borrow_rec(&self) -> &Self::Inner[src]

Implementors

impl<R: Record + ?Sized> BorrowRecord for R[src]

type Cols = R::Cols

type Inner = R

fn borrow_rec(&self) -> &Self::Inner[src]