Struct smartnoise_validator::utilities::json::Accuracy[][src]

pub struct Accuracy {
    pub accuracy_value: f64,
    pub alpha: f64,
}

Statistical accuracy summary

The actual value refers to the non-privatized statistic on sample data, not the non-privatized statistic of the population

Fields

accuracy_value: f64

Upper bound on the distance between the estimated value and actual value.

alpha: f64

100(1 - alpha)% confidence that the actual value is within the interval spanned by the accuracyValue.

Trait Implementations

impl<'de> Deserialize<'de> for Accuracy[src]

impl Serialize for Accuracy[src]

Auto Trait Implementations

impl RefUnwindSafe for Accuracy

impl Send for Accuracy

impl Sync for Accuracy

impl Unpin for Accuracy

impl UnwindSafe for Accuracy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]