pub struct CandidateAssociation {
pub change_id: String,
pub commit_id: String,
pub lifetime_id: String,
pub rank: usize,
pub delta_ms: i64,
pub match_kind: String,
pub exact_hunk_match: bool,
pub evidence_bin: String,
}Fields§
§change_id: String§commit_id: String§lifetime_id: String§rank: usize§delta_ms: i64§match_kind: String§exact_hunk_match: bool§evidence_bin: StringTrait Implementations§
Source§impl Clone for CandidateAssociation
impl Clone for CandidateAssociation
Source§fn clone(&self) -> CandidateAssociation
fn clone(&self) -> CandidateAssociation
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 moreSource§impl Debug for CandidateAssociation
impl Debug for CandidateAssociation
Source§impl<'de> Deserialize<'de> for CandidateAssociation
impl<'de> Deserialize<'de> for CandidateAssociation
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 CandidateAssociation
impl RefUnwindSafe for CandidateAssociation
impl Send for CandidateAssociation
impl Sync for CandidateAssociation
impl Unpin for CandidateAssociation
impl UnsafeUnpin for CandidateAssociation
impl UnwindSafe for CandidateAssociation
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