Skip to main content

Selection

Trait Selection 

Source
pub trait Selection {
    type Output;

    // Required method
    fn expressions(self) -> Vec<Expression>;
}

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<A, B, C, D, E, F, G, H> Selection for (A, B, C, D, E, F, G, H)

Source§

type Output = (<A as Selection>::Output, <B as Selection>::Output, <C as Selection>::Output, <D as Selection>::Output, <E as Selection>::Output, <F as Selection>::Output, <G as Selection>::Output, <H as Selection>::Output)

Source§

fn expressions(self) -> Vec<Expression>

Source§

impl<A, B, C, D, E, F, G> Selection for (A, B, C, D, E, F, G)

Source§

impl<A, B, C, D, E, F> Selection for (A, B, C, D, E, F)

Source§

impl<A, B, C, D, E> Selection for (A, B, C, D, E)
where A: Selection, B: Selection, C: Selection, D: Selection, E: Selection,

Source§

impl<A, B, C, D> Selection for (A, B, C, D)
where A: Selection, B: Selection, C: Selection, D: Selection,

Source§

impl<A, B, C> Selection for (A, B, C)
where A: Selection, B: Selection, C: Selection,

Source§

impl<A, B> Selection for (A, B)
where A: Selection, B: Selection,

Implementors§