compiletest
1.84.0-nightly
(3fee0f12e 2024-11-20)
Custom
Contains
Required Methods
custom_contains
Implementations on Foreign Types
&[&str]
HashSet<String>
[&str; N]
Implementors
In compiletest::
header::
cfg
compiletest
::
header
::
cfg
Trait
CustomContains
Copy item path
Source
trait CustomContains { // Required method fn
custom_contains
(&self, item: &
str
) ->
bool
; }
Required Methods
§
Source
fn
custom_contains
(&self, item: &
str
) ->
bool
Implementations on Foreign Types
§
Source
§
impl
CustomContains
for &[&
str
]
Source
§
fn
custom_contains
(&self, item: &
str
) ->
bool
Source
§
impl
CustomContains
for
HashSet
<
String
>
Source
§
fn
custom_contains
(&self, item: &
str
) ->
bool
Source
§
impl<const N:
usize
>
CustomContains
for [&
str
;
N
]
Source
§
fn
custom_contains
(&self, item: &
str
) ->
bool
Implementors
§
Source
§
impl<A:
CustomContains
, B:
CustomContains
>
CustomContains
for
ContainsEither
<'_, A, B>
Source
§
impl<T:
CustomContains
>
CustomContains
for
ContainsPrefixed
<T>