pub struct PasswordStr { /* private fields */ }Trait Implementations§
Source§impl BoundedString for PasswordStr
impl BoundedString for PasswordStr
const MIN_LENGTH: Option<usize>
const MAX_LENGTH: Option<usize>
const DEFAULT: Option<&'static str>
const PATTERN: Option<&'static str>
const TYPE_DESCRIPTION: &'static str = "a string with length at least 5"
fn get_value(&self) -> &str
fn new(value: String) -> Result<Self, BoundedStringError>
fn validate(value: &str) -> Result<(), BoundedStringError>
Source§impl Clone for PasswordStr
impl Clone for PasswordStr
Source§fn clone(&self) -> PasswordStr
fn clone(&self) -> PasswordStr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PasswordStr
impl Debug for PasswordStr
Source§impl<'de> Deserialize<'de> for PasswordStr
impl<'de> Deserialize<'de> for PasswordStr
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PasswordStr
impl PartialEq for PasswordStr
Source§fn eq(&self, other: &PasswordStr) -> bool
fn eq(&self, other: &PasswordStr) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PasswordStr
impl PartialOrd for PasswordStr
Source§impl Serialize for PasswordStr
impl Serialize for PasswordStr
impl StructuralPartialEq for PasswordStr
Auto Trait Implementations§
impl Freeze for PasswordStr
impl RefUnwindSafe for PasswordStr
impl Send for PasswordStr
impl Sync for PasswordStr
impl Unpin for PasswordStr
impl UnsafeUnpin for PasswordStr
impl UnwindSafe for PasswordStr
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