pub struct CepComparison {
pub mode: String,
pub tokens_without_cep: usize,
pub tokens_with_cep: usize,
pub quality_score: f64,
pub quality_passed: bool,
}Fields§
§mode: String§tokens_without_cep: usize§tokens_with_cep: usize§quality_score: f64§quality_passed: boolTrait Implementations§
Source§impl Clone for CepComparison
impl Clone for CepComparison
Source§fn clone(&self) -> CepComparison
fn clone(&self) -> CepComparison
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 CepComparison
impl RefUnwindSafe for CepComparison
impl Send for CepComparison
impl Sync for CepComparison
impl Unpin for CepComparison
impl UnsafeUnpin for CepComparison
impl UnwindSafe for CepComparison
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