pub struct AsciiLetters;
Expand description
Containes all ASCII letters: a-z, A-Z
Trait Implementations§
Source§impl CharacterSet for AsciiLetters
impl CharacterSet for AsciiLetters
Source§fn contains(&self, ch: char) -> bool
fn contains(&self, ch: char) -> bool
Returns
true
if the character set contains the given character. Read moreSource§fn union<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetUnion<Self, Other>where
Self: Sized,
fn union<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetUnion<Self, Other>where
Self: Sized,
Returns a
CharacterSet
that contains the characters in the self
set, as well as any characters in the given other
character set. Read moreSource§fn intersection<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetIntersection<Self, Other>where
Self: Sized,
fn intersection<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetIntersection<Self, Other>where
Self: Sized,
Source§fn difference<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetDifference<Self, Other>where
Self: Sized,
fn difference<Other: CharacterSet>(
self,
other: Other,
) -> CharacterSetDifference<Self, Other>where
Self: Sized,
Returns a
CharacterSet
that contains the characters in the self
character set, unless they are also contained in other
. Read moreSource§fn complement(self) -> CharacterSetComplement<Self>where
Self: Sized,
fn complement(self) -> CharacterSetComplement<Self>where
Self: Sized,
Returns a
CharacterSet
that contains all of the characters that are
NOT contained in the self
character set. Read moreSource§impl Clone for AsciiLetters
impl Clone for AsciiLetters
Source§fn clone(&self) -> AsciiLetters
fn clone(&self) -> AsciiLetters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AsciiLetters
impl Debug for AsciiLetters
impl Copy for AsciiLetters
Auto Trait Implementations§
impl Freeze for AsciiLetters
impl RefUnwindSafe for AsciiLetters
impl Send for AsciiLetters
impl Sync for AsciiLetters
impl Unpin for AsciiLetters
impl UnwindSafe for AsciiLetters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more