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§