Trait acme_core::ops::Args

source ·
pub trait Args {
    type Pattern;

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

Required Associated Types§

Required Methods§

source

fn args(self) -> Self::Pattern

Implementations on Foreign Types§

source§

impl Args for ()

§

type Pattern = ()

source§

fn args(self) -> Self::Pattern

source§

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

§

type Pattern = (A, B)

source§

fn args(self) -> Self::Pattern

Implementors§