pub struct DocumentLineCountDistribution {
pub min_lines: u32,
pub max_lines: u32,
pub mode_lines: u32,
}Expand description
Document line count distribution.
Fields§
§min_lines: u32Minimum number of lines
max_lines: u32Maximum number of lines
mode_lines: u32Most common line count (mode)
Trait Implementations§
Source§impl Clone for DocumentLineCountDistribution
impl Clone for DocumentLineCountDistribution
Source§fn clone(&self) -> DocumentLineCountDistribution
fn clone(&self) -> DocumentLineCountDistribution
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<'de> Deserialize<'de> for DocumentLineCountDistribution
impl<'de> Deserialize<'de> for DocumentLineCountDistribution
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
Auto Trait Implementations§
impl Freeze for DocumentLineCountDistribution
impl RefUnwindSafe for DocumentLineCountDistribution
impl Send for DocumentLineCountDistribution
impl Sync for DocumentLineCountDistribution
impl Unpin for DocumentLineCountDistribution
impl UnwindSafe for DocumentLineCountDistribution
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