pub struct ConformalPresentationInterval {
pub coverage: f64,
pub lower: Vec<Option<f64>>,
pub upper: Vec<Option<f64>>,
pub qhat: Option<f64>,
}Fields§
§coverage: f64§lower: Vec<Option<f64>>None represents a deliberately unbounded interval, never an
infinity/sentinel endpoint.
upper: Vec<Option<f64>>§qhat: Option<f64>Exact native split-conformal radius for this coverage, or None for
the declared unbounded small-sample policy.
Trait Implementations§
Source§impl Clone for ConformalPresentationInterval
impl Clone for ConformalPresentationInterval
Source§fn clone(&self) -> ConformalPresentationInterval
fn clone(&self) -> ConformalPresentationInterval
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<'de> Deserialize<'de> for ConformalPresentationInterval
impl<'de> Deserialize<'de> for ConformalPresentationInterval
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConformalPresentationInterval, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConformalPresentationInterval, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ConformalPresentationInterval
impl Serialize for ConformalPresentationInterval
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ConformalPresentationInterval
Auto Trait Implementations§
impl Freeze for ConformalPresentationInterval
impl RefUnwindSafe for ConformalPresentationInterval
impl Send for ConformalPresentationInterval
impl Sync for ConformalPresentationInterval
impl Unpin for ConformalPresentationInterval
impl UnsafeUnpin for ConformalPresentationInterval
impl UnwindSafe for ConformalPresentationInterval
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