AsQuery

Trait AsQuery 

Source
pub trait AsQuery<D: Driver> {
    type Output: AsMut<Query<D>> + Send;

    // Required method
    fn as_query(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn as_query(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<D: Driver> AsQuery<D> for &str

Source§

type Output = Query<D>

Source§

fn as_query(self) -> Self::Output

Source§

impl<D: Driver> AsQuery<D> for String

Source§

type Output = Query<D>

Source§

fn as_query(self) -> Self::Output

Implementors§

Source§

impl<'q, D: Driver + 'q> AsQuery<D> for &'q mut Query<D>

Source§

type Output = &'q mut Query<D>

Source§

impl<D: Driver> AsQuery<D> for DynQuery

Source§

impl<D: Driver> AsQuery<D> for Query<D>

Source§

impl<D: Driver> AsQuery<D> for RawQuery