pub struct MatchOutcome {
pub status: MatchStatus,
pub allow_id: Option<String>,
pub finding_index: Option<usize>,
pub message: String,
pub score: u32,
}Fields§
§status: MatchStatus§allow_id: Option<String>§finding_index: Option<usize>§message: String§score: u32Trait Implementations§
Source§impl Clone for MatchOutcome
impl Clone for MatchOutcome
Source§fn clone(&self) -> MatchOutcome
fn clone(&self) -> MatchOutcome
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 MatchOutcome
impl Debug for MatchOutcome
Source§impl PartialEq for MatchOutcome
impl PartialEq for MatchOutcome
Source§fn eq(&self, other: &MatchOutcome) -> bool
fn eq(&self, other: &MatchOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MatchOutcome
impl StructuralPartialEq for MatchOutcome
Auto Trait Implementations§
impl Freeze for MatchOutcome
impl RefUnwindSafe for MatchOutcome
impl Send for MatchOutcome
impl Sync for MatchOutcome
impl Unpin for MatchOutcome
impl UnsafeUnpin for MatchOutcome
impl UnwindSafe for MatchOutcome
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