Trait Params

Source
pub trait Params {
    type Pattern;

    // Required method
    fn into_pattern(self) -> Self::Pattern;
}

Required Associated Types§

Required Methods§

Source

fn into_pattern(self) -> Self::Pattern

Implementations on Foreign Types§

Source§

impl Params for ()

Source§

impl<A> Params for [A; 1]
where A: Copy,

Source§

impl<A> Params for (A,)

Source§

impl<A, B> Params for (A, B)

Source§

impl<A, B, C> Params for (A, B, C)

Source§

impl<A, B, C, D> Params for (A, B, C, D)

Source§

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

Implementors§

Source§

impl<A, B> Params for BinaryArgs<A, B>