pub trait CalibrateDebevecTraitConst: CalibrateCRFTraitConst {
// Required method
fn as_raw_CalibrateDebevec(&self) -> *const c_void;
// Provided methods
fn get_lambda(&self) -> Result<f32> { ... }
fn get_samples(&self) -> Result<i32> { ... }
fn get_random(&self) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::photo::CalibrateDebevec
Required Methods§
fn as_raw_CalibrateDebevec(&self) -> *const c_void
Provided Methods§
fn get_lambda(&self) -> Result<f32>
fn get_samples(&self) -> Result<i32>
fn get_random(&self) -> Result<bool>
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.