pub struct RiskOrgFeature {
pub blind: Option<bool>,
pub buckets: Option<i32>,
pub max: Option<f64>,
pub mean: Option<f64>,
pub name: Option<String>,
pub present: Option<i32>,
pub source: Option<String>,
pub unit: Option<String>,
}Fields§
§blind: Option<bool>Blind is true when the dimension is present in no bucket at all: this organisation’s surface does not carry it, and saying so is the difference between no risk and no data.
buckets: Option<i32>Buckets is how many five-minute buckets of this organisation’s surface were measured.
max: Option<f64>Max is the largest value it reached in the window.
mean: Option<f64>Mean is the dimension’s average where it was present.
name: Option<String>Name is the dimension as this API publishes it.
present: Option<i32>Present is in how many of them the dimension carried a value at all.
source: Option<String>Source names the plane it is rolled up from, so a dimension that reads zero everywhere traces to a plane the organisation does not use rather than to a defect.
unit: Option<String>Unit is how to read the numbers below.
Implementations§
Source§impl RiskOrgFeature
impl RiskOrgFeature
pub fn new() -> RiskOrgFeature
Trait Implementations§
Source§impl Clone for RiskOrgFeature
impl Clone for RiskOrgFeature
Source§fn clone(&self) -> RiskOrgFeature
fn clone(&self) -> RiskOrgFeature
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 RiskOrgFeature
impl Debug for RiskOrgFeature
Source§impl Default for RiskOrgFeature
impl Default for RiskOrgFeature
Source§fn default() -> RiskOrgFeature
fn default() -> RiskOrgFeature
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RiskOrgFeature
impl<'de> Deserialize<'de> for RiskOrgFeature
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 RiskOrgFeature
impl PartialEq for RiskOrgFeature
Source§impl Serialize for RiskOrgFeature
impl Serialize for RiskOrgFeature
impl StructuralPartialEq for RiskOrgFeature
Auto Trait Implementations§
impl Freeze for RiskOrgFeature
impl RefUnwindSafe for RiskOrgFeature
impl Send for RiskOrgFeature
impl Sync for RiskOrgFeature
impl Unpin for RiskOrgFeature
impl UnsafeUnpin for RiskOrgFeature
impl UnwindSafe for RiskOrgFeature
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