Trait mem_query::query::filter::IntoFilter[][src]

pub trait IntoFilter {
    type Result: QueryFilter + List;
    fn into_filter(self) -> Self::Result;
}

Associated Types

Required methods

fn into_filter(self) -> Self::Result[src]

Implementations on Foreign Types

impl IntoFilter for HNil[src]

type Result = Self

fn into_filter(self) -> Self[src]

impl<H: ColProxy + PartialEq, T: IntoFilter> IntoFilter for HCons<H, T> where
    HCons<Exact<H>, T::Result>: QueryFilter
[src]

type Result = HCons<Exact<H>, T::Result>

fn into_filter(self) -> Self::Result[src]

Implementors