pub trait ObjectnessBINGTraitConst: ObjectnessTraitConst {
// Required method
fn as_raw_ObjectnessBING(&self) -> *const c_void;
// Provided methods
fn write(&self) -> Result<()> { ... }
fn get_base(&self) -> Result<f64> { ... }
fn get_nss(&self) -> Result<i32> { ... }
fn get_w(&self) -> Result<i32> { ... }
}
Expand description
Constant methods for crate::saliency::ObjectnessBING
Required Methods§
fn as_raw_ObjectnessBING(&self) -> *const c_void
Provided Methods§
fn write(&self) -> Result<()>
fn get_base(&self) -> Result<f64>
fn get_nss(&self) -> Result<i32>
fn get_w(&self) -> Result<i32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.