pub struct ScoreReport {
pub total: u8,
pub metrics: Vec<MetricScore>,
}Expand description
Full comprehensibility report for a document.
Fields§
§total: u8Total score 0–100.
metrics: Vec<MetricScore>Per-metric breakdown.
Trait Implementations§
Source§impl Clone for ScoreReport
impl Clone for ScoreReport
Source§fn clone(&self) -> ScoreReport
fn clone(&self) -> ScoreReport
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 moreAuto Trait Implementations§
impl Freeze for ScoreReport
impl RefUnwindSafe for ScoreReport
impl Send for ScoreReport
impl Sync for ScoreReport
impl Unpin for ScoreReport
impl UnsafeUnpin for ScoreReport
impl UnwindSafe for ScoreReport
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