pub trait Caseless {
// Required methods
fn default_case_fold(self) -> CaseFold<Self> ⓘ
where Self: Sized;
fn default_caseless_match<J: Iterator<Item = char>>(self, other: J) -> bool;
fn canonical_caseless_match<J: Iterator<Item = char>>(
self,
other: J,
) -> bool;
fn compatibility_caseless_match<J: Iterator<Item = char>>(
self,
other: J,
) -> bool;
}
Required Methods§
fn default_case_fold(self) -> CaseFold<Self> ⓘwhere
Self: Sized,
fn default_caseless_match<J: Iterator<Item = char>>(self, other: J) -> bool
fn canonical_caseless_match<J: Iterator<Item = char>>(self, other: J) -> bool
fn compatibility_caseless_match<J: Iterator<Item = char>>( self, other: J, ) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.