pub struct ReportConfig {
pub ot_projections: usize,
pub knn_k: usize,
pub diffusion_sigma: f32,
pub compute_persistence: bool,
pub seed: u64,
}Expand description
Report configuration
Fields§
§ot_projections: usizeNumber of OT projections
knn_k: usizek for k-NN coherence
diffusion_sigma: f32Sigma for diffusion
compute_persistence: boolWhether to compute H0 persistence (expensive)
seed: u64Random seed
Trait Implementations§
Source§impl Clone for ReportConfig
impl Clone for ReportConfig
Source§fn clone(&self) -> ReportConfig
fn clone(&self) -> ReportConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ReportConfig
impl Debug for ReportConfig
Source§impl Default for ReportConfig
impl Default for ReportConfig
Source§impl<'de> Deserialize<'de> for ReportConfig
impl<'de> Deserialize<'de> for ReportConfig
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
Auto Trait Implementations§
impl Freeze for ReportConfig
impl RefUnwindSafe for ReportConfig
impl Send for ReportConfig
impl Sync for ReportConfig
impl Unpin for ReportConfig
impl UnwindSafe for ReportConfig
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