pub enum Alpha {
All,
Dist,
Lower,
Upper,
None,
}
Expand description
Sets related to the alphabetic collating sequence
Variants§
All
Both lower and upper case letters (“*”, “b”, “both”)
Dist
Characters that are easily distinguished (O,l,Z).
Lower
Lower case letters only (“l”, “lc”, “lower” or “lower-case”)
Upper
Upper case letters only (“u”, “uc”, “upper” or “upper-case”)
None
No letters
Trait Implementations§
Source§impl CollatingSeq for Alpha
impl CollatingSeq for Alpha
Source§fn characters(&self) -> &[char]
fn characters(&self) -> &[char]
return all characters from the charset
impl Copy for Alpha
impl Eq for Alpha
impl StructuralPartialEq for Alpha
Auto Trait Implementations§
impl Freeze for Alpha
impl RefUnwindSafe for Alpha
impl Send for Alpha
impl Sync for Alpha
impl Unpin for Alpha
impl UnwindSafe for Alpha
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