compiletest
1.84.0-nightly
(3fee0f12e 2024-11-20)
Custom
Matches
Required Methods
custom_matches
Implementations on Foreign Types
&[T]
&str
Option<T>
String
[T; N]
Implementors
In compiletest::
header::
cfg
compiletest
::
header
::
cfg
Trait
CustomMatches
Copy item path
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
§