Skip to main content

EdgedbQueryArgs

Trait EdgedbQueryArgs 

Source
pub trait EdgedbQueryArgs {
    type EdgedbArgsType: QueryArgs;

    // Required method
    fn to_query_args(self) -> Result<Self::EdgedbArgsType>;
}
Expand description

A tuple of query arguments, currently each must be EdgedbPrim.

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl EdgedbQueryArgs for ()

Source§

impl<T0: EdgedbPrim, T1: EdgedbPrim, T2: EdgedbPrim, T3: EdgedbPrim, T4: EdgedbPrim, T5: EdgedbPrim> EdgedbQueryArgs for (T0, T1, T2, T3, T4, T5)

Source§

impl<T0: EdgedbPrim, T1: EdgedbPrim, T2: EdgedbPrim, T3: EdgedbPrim, T4: EdgedbPrim> EdgedbQueryArgs for (T0, T1, T2, T3, T4)

Source§

impl<T0: EdgedbPrim, T1: EdgedbPrim, T2: EdgedbPrim, T3: EdgedbPrim> EdgedbQueryArgs for (T0, T1, T2, T3)

Source§

impl<T0: EdgedbPrim, T1: EdgedbPrim, T2: EdgedbPrim> EdgedbQueryArgs for (T0, T1, T2)

Source§

impl<T0: EdgedbPrim, T1: EdgedbPrim> EdgedbQueryArgs for (T0, T1)

Source§

impl<T0: EdgedbPrim> EdgedbQueryArgs for (T0,)

Implementors§