pub struct RiskModelFeature {
pub blind: Option<i32>,
pub citation: Option<String>,
pub indicator: Option<String>,
pub name: Option<String>,
pub neutral: Option<f64>,
pub severity: Option<String>,
pub typology: Option<String>,
pub unit: Option<String>,
pub window: Option<String>,
}Fields§
§blind: Option<i32>Blind is how often this dimension took that neutral value for THIS organisation.
citation: Option<String>Citation is where those words come from, so the claim is checkable rather than asserted.
indicator: Option<String>Indicator is the supervisor’s own words for the thing being looked for.
name: Option<String>Name is the dimension.
neutral: Option<f64>Neutral is the value the coordinate takes when the data cannot support it.
severity: Option<String>Severity is how much weight an alert on it carries.
typology: Option<String>Typology is the pattern this dimension detects.
unit: Option<String>Unit is how to read the raw number, which is what turns a coordinate into a sentence an investigator can put in a file.
window: Option<String>Window is the sliding aggregate it reads.
Implementations§
Source§impl RiskModelFeature
impl RiskModelFeature
pub fn new() -> RiskModelFeature
Trait Implementations§
Source§impl Clone for RiskModelFeature
impl Clone for RiskModelFeature
Source§fn clone(&self) -> RiskModelFeature
fn clone(&self) -> RiskModelFeature
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 RiskModelFeature
impl Debug for RiskModelFeature
Source§impl Default for RiskModelFeature
impl Default for RiskModelFeature
Source§fn default() -> RiskModelFeature
fn default() -> RiskModelFeature
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RiskModelFeature
impl<'de> Deserialize<'de> for RiskModelFeature
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
Source§impl PartialEq for RiskModelFeature
impl PartialEq for RiskModelFeature
Source§impl Serialize for RiskModelFeature
impl Serialize for RiskModelFeature
impl StructuralPartialEq for RiskModelFeature
Auto Trait Implementations§
impl Freeze for RiskModelFeature
impl RefUnwindSafe for RiskModelFeature
impl Send for RiskModelFeature
impl Sync for RiskModelFeature
impl Unpin for RiskModelFeature
impl UnsafeUnpin for RiskModelFeature
impl UnwindSafe for RiskModelFeature
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