pub struct OrphanCandidate {
pub sha: String,
pub short_sha: String,
pub message: String,
pub author: String,
pub author_email: String,
pub timestamp: String,
pub files: Vec<String>,
pub suspicion_score: u32,
pub probable_beads: Vec<ProbableBead>,
pub signals: Vec<OrphanSignalHit>,
}Fields§
§sha: String§short_sha: String§message: String§timestamp: String§files: Vec<String>§suspicion_score: u32§probable_beads: Vec<ProbableBead>§signals: Vec<OrphanSignalHit>Trait Implementations§
Source§impl Clone for OrphanCandidate
impl Clone for OrphanCandidate
Source§fn clone(&self) -> OrphanCandidate
fn clone(&self) -> OrphanCandidate
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 OrphanCandidate
impl Debug for OrphanCandidate
Auto Trait Implementations§
impl Freeze for OrphanCandidate
impl RefUnwindSafe for OrphanCandidate
impl Send for OrphanCandidate
impl Sync for OrphanCandidate
impl Unpin for OrphanCandidate
impl UnsafeUnpin for OrphanCandidate
impl UnwindSafe for OrphanCandidate
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