pub struct TextLengthStats {
pub min_length: usize,
pub max_length: usize,
pub avg_length: f64,
/* private fields */
}Fields§
§min_length: usize§max_length: usize§avg_length: f64Implementations§
Trait Implementations§
Source§impl Clone for TextLengthStats
impl Clone for TextLengthStats
Source§fn clone(&self) -> TextLengthStats
fn clone(&self) -> TextLengthStats
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 TextLengthStats
impl Debug for TextLengthStats
Auto Trait Implementations§
impl Freeze for TextLengthStats
impl RefUnwindSafe for TextLengthStats
impl Send for TextLengthStats
impl Sync for TextLengthStats
impl Unpin for TextLengthStats
impl UnsafeUnpin for TextLengthStats
impl UnwindSafe for TextLengthStats
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