pub struct RiskBreakdown {
pub amount_risk: u8,
pub velocity_risk: u8,
pub pattern_risk: u8,
pub time_risk: u8,
pub total_score: u8,
}Expand description
Risk breakdown for detailed analysis
Fields§
§amount_risk: u8§velocity_risk: u8§pattern_risk: u8§time_risk: u8§total_score: u8Trait Implementations§
Source§impl Clone for RiskBreakdown
impl Clone for RiskBreakdown
Source§fn clone(&self) -> RiskBreakdown
fn clone(&self) -> RiskBreakdown
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 RiskBreakdown
impl Debug for RiskBreakdown
Source§impl<'de> Deserialize<'de> for RiskBreakdown
impl<'de> Deserialize<'de> for RiskBreakdown
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 RiskBreakdown
impl RefUnwindSafe for RiskBreakdown
impl Send for RiskBreakdown
impl Sync for RiskBreakdown
impl Unpin for RiskBreakdown
impl UnwindSafe for RiskBreakdown
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