[−][src]Enum password_rules_parser::CharacterClass
Character classes that the password can be allowed or required to use
Variants
A-Z
a-z
0-9
-~!@#$%^&*_+=`|(){}[:;"'<>,.? ] and space
All ASCII printable characters
All unicode characters
A custom list between [] of ascii characters that can be used in the password For example: [abc] consists of the characters a, b, and c
Implementations
impl CharacterClass
[src]
Trait Implementations
impl Clone for CharacterClass
[src]
fn clone(&self) -> CharacterClass
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for CharacterClass
[src]
impl Eq for CharacterClass
[src]
impl Ord for CharacterClass
[src]
fn cmp(&self, other: &CharacterClass) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<CharacterClass> for CharacterClass
[src]
fn eq(&self, other: &CharacterClass) -> bool
[src]
fn ne(&self, other: &CharacterClass) -> bool
[src]
impl PartialOrd<CharacterClass> for CharacterClass
[src]
fn partial_cmp(&self, other: &CharacterClass) -> Option<Ordering>
[src]
fn lt(&self, other: &CharacterClass) -> bool
[src]
fn le(&self, other: &CharacterClass) -> bool
[src]
fn gt(&self, other: &CharacterClass) -> bool
[src]
fn ge(&self, other: &CharacterClass) -> bool
[src]
impl StructuralEq for CharacterClass
[src]
impl StructuralPartialEq for CharacterClass
[src]
Auto Trait Implementations
impl RefUnwindSafe for CharacterClass
impl Send for CharacterClass
impl Sync for CharacterClass
impl Unpin for CharacterClass
impl UnwindSafe for CharacterClass
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,