pub struct PassiveVoiceResult {
pub instances: Vec<PassiveInstance>,
pub percentage: f64,
}Expand description
Result of passive voice detection.
Fields§
§instances: Vec<PassiveInstance>All detected passive voice instances
percentage: f64Percentage of sentences containing passive voice (0.0-100.0)
Trait Implementations§
Source§impl Clone for PassiveVoiceResult
impl Clone for PassiveVoiceResult
Source§fn clone(&self) -> PassiveVoiceResult
fn clone(&self) -> PassiveVoiceResult
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 PassiveVoiceResult
impl Debug for PassiveVoiceResult
Source§impl PartialEq for PassiveVoiceResult
impl PartialEq for PassiveVoiceResult
impl StructuralPartialEq for PassiveVoiceResult
Auto Trait Implementations§
impl Freeze for PassiveVoiceResult
impl RefUnwindSafe for PassiveVoiceResult
impl Send for PassiveVoiceResult
impl Sync for PassiveVoiceResult
impl Unpin for PassiveVoiceResult
impl UnsafeUnpin for PassiveVoiceResult
impl UnwindSafe for PassiveVoiceResult
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