pub struct CloneGroup {
pub token_count: usize,
pub occurrences: Vec<Occurrence>,
}Expand description
A group of code regions that share the same normalized token sequence.
Fields§
§token_count: usize§occurrences: Vec<Occurrence>Trait Implementations§
Source§impl Clone for CloneGroup
impl Clone for CloneGroup
Source§fn clone(&self) -> CloneGroup
fn clone(&self) -> CloneGroup
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 CloneGroup
impl Debug for CloneGroup
Source§impl PartialEq for CloneGroup
impl PartialEq for CloneGroup
impl StructuralPartialEq for CloneGroup
Auto Trait Implementations§
impl Freeze for CloneGroup
impl RefUnwindSafe for CloneGroup
impl Send for CloneGroup
impl Sync for CloneGroup
impl Unpin for CloneGroup
impl UnsafeUnpin for CloneGroup
impl UnwindSafe for CloneGroup
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