pub struct WordOverlap {
pub start_index: u64,
pub end_index: u64,
pub overlaps: HashMap<InternalSpeaker, u64>,
pub word: String,
}Fields§
§start_index: u64§end_index: u64§overlaps: HashMap<InternalSpeaker, u64>§word: StringTrait Implementations§
Source§impl Clone for WordOverlap
impl Clone for WordOverlap
Source§fn clone(&self) -> WordOverlap
fn clone(&self) -> WordOverlap
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 moreAuto Trait Implementations§
impl Freeze for WordOverlap
impl RefUnwindSafe for WordOverlap
impl Send for WordOverlap
impl Sync for WordOverlap
impl Unpin for WordOverlap
impl UnsafeUnpin for WordOverlap
impl UnwindSafe for WordOverlap
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