AnyOf

Trait AnyOf 

Source
pub trait AnyOf {
    type Out;

    // Required method
    fn into_any(self) -> Self::Out;
}

Required Associated Types§

Required Methods§

Source

fn into_any(self) -> Self::Out

Implementations on Foreign Types§

Source§

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

Source§

type Out = AnyOf2Matcher<A, B>

Source§

fn into_any(self) -> Self::Out

Source§

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

Source§

type Out = AnyOf3Matcher<A, B, C>

Source§

fn into_any(self) -> Self::Out

Implementors§