compiletest
1.83.0
(90b35a623 2024-11-26)
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
§