pub struct RankedContractCard {
pub card: ContractCard,
pub score: i32,
pub reasons: Vec<String>,
}Expand description
One contract card paired with its ranking score and explanation.
Fields§
§card: ContractCardThe matched source-free contract card.
score: i32Higher scores sort before lower scores.
reasons: Vec<String>Human-readable facts that contributed to the score.
Trait Implementations§
Source§impl Clone for RankedContractCard
impl Clone for RankedContractCard
Source§fn clone(&self) -> RankedContractCard
fn clone(&self) -> RankedContractCard
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 RankedContractCard
impl Debug for RankedContractCard
impl Eq for RankedContractCard
Source§impl PartialEq for RankedContractCard
impl PartialEq for RankedContractCard
impl StructuralPartialEq for RankedContractCard
Auto Trait Implementations§
impl Freeze for RankedContractCard
impl RefUnwindSafe for RankedContractCard
impl Send for RankedContractCard
impl Sync for RankedContractCard
impl Unpin for RankedContractCard
impl UnsafeUnpin for RankedContractCard
impl UnwindSafe for RankedContractCard
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.