pub struct CloneMatch {
pub source: String,
pub target: String,
pub similarity: f64,
pub clone_type: CloneType,
}Fields§
§source: String§target: String§similarity: f64§clone_type: CloneTypeTrait Implementations§
Source§impl Clone for CloneMatch
impl Clone for CloneMatch
Source§fn clone(&self) -> CloneMatch
fn clone(&self) -> CloneMatch
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 CloneMatch
impl Debug for CloneMatch
Source§impl<'de> Deserialize<'de> for CloneMatch
impl<'de> Deserialize<'de> for CloneMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CloneMatch
impl RefUnwindSafe for CloneMatch
impl Send for CloneMatch
impl Sync for CloneMatch
impl Unpin for CloneMatch
impl UnsafeUnpin for CloneMatch
impl UnwindSafe for CloneMatch
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