Trait nuts_rs::DrawStorage
source · pub trait DrawStorage: Send + Clone {
// Required methods
fn append_value(&mut self, point: &[f64]) -> Result<()>;
fn finalize(self) -> Result<Box<dyn Array>>;
fn inspect(&mut self) -> Result<Box<dyn Array>>;
}
Required Methods§
fn append_value(&mut self, point: &[f64]) -> Result<()>
fn finalize(self) -> Result<Box<dyn Array>>
fn inspect(&mut self) -> Result<Box<dyn Array>>
Object Safety§
This trait is not object safe.