pub struct FraudScore {
pub score: u8,
pub risk_level: RiskLevel,
pub flags: Vec<FraudFlag>,
}Expand description
Fraud risk score (0-100)
Fields§
§score: u8§risk_level: RiskLevel§flags: Vec<FraudFlag>Trait Implementations§
Source§impl Clone for FraudScore
impl Clone for FraudScore
Source§fn clone(&self) -> FraudScore
fn clone(&self) -> FraudScore
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 moreAuto Trait Implementations§
impl Freeze for FraudScore
impl RefUnwindSafe for FraudScore
impl Send for FraudScore
impl Sync for FraudScore
impl Unpin for FraudScore
impl UnwindSafe for FraudScore
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