Trait caseless::Caseless
[−]
[src]
pub trait Caseless {
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;
}