pub struct ConstraintDetailCounts {
pub prefix_count: usize,
pub suffix_count: usize,
pub min_len_count: usize,
pub min_len_sum: usize,
pub max_len_count: usize,
pub max_len_sum: usize,
pub char_must_count: usize,
pub char_must_len_sum: usize,
pub char_may_count: usize,
pub char_may_len_sum: usize,
pub may_include_other_chars_count: usize,
}Fields§
§prefix_count: usize§suffix_count: usize§min_len_count: usize§min_len_sum: usize§max_len_count: usize§max_len_sum: usize§char_must_count: usize§char_must_len_sum: usize§char_may_count: usize§char_may_len_sum: usize§may_include_other_chars_count: usizeTrait Implementations§
Source§impl Clone for ConstraintDetailCounts
impl Clone for ConstraintDetailCounts
Source§fn clone(&self) -> ConstraintDetailCounts
fn clone(&self) -> ConstraintDetailCounts
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 ConstraintDetailCounts
impl Debug for ConstraintDetailCounts
Source§impl Default for ConstraintDetailCounts
impl Default for ConstraintDetailCounts
Source§fn default() -> ConstraintDetailCounts
fn default() -> ConstraintDetailCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConstraintDetailCounts
impl RefUnwindSafe for ConstraintDetailCounts
impl Send for ConstraintDetailCounts
impl Sync for ConstraintDetailCounts
impl Unpin for ConstraintDetailCounts
impl UnsafeUnpin for ConstraintDetailCounts
impl UnwindSafe for ConstraintDetailCounts
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