pub trait LevMarq_ReportTraitConst {
// Required method
fn as_raw_LevMarq_Report(&self) -> *const c_void;
// Provided methods
fn found(&self) -> bool { ... }
fn iters(&self) -> i32 { ... }
fn energy(&self) -> f64 { ... }
}Expand description
Constant methods for crate::geometry::LevMarq_Report
Required Methods§
fn as_raw_LevMarq_Report(&self) -> *const c_void
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".