compiletest::header::cfg

Trait CustomMatches

source
trait CustomMatches {
    // Required method
    fn custom_matches(&self, name: &str) -> bool;
}

Required Methods§

source

fn custom_matches(&self, name: &str) -> bool

Implementations on Foreign Types§

source§

impl CustomMatches for &str

source§

fn custom_matches(&self, name: &str) -> bool

source§

impl CustomMatches for String

source§

fn custom_matches(&self, name: &str) -> bool

source§

impl<T: CustomMatches> CustomMatches for &[T]

source§

fn custom_matches(&self, name: &str) -> bool

source§

impl<T: CustomMatches> CustomMatches for Option<T>

source§

fn custom_matches(&self, name: &str) -> bool

source§

impl<const N: usize, T: CustomMatches> CustomMatches for [T; N]

source§

fn custom_matches(&self, name: &str) -> bool

Implementors§