pub trait FacemarkAAM_ParamsTraitConst {
// Required method
fn as_raw_FacemarkAAM_Params(&self) -> *const c_void;
// Provided methods
fn model_filename(&self) -> String { ... }
fn m(&self) -> i32 { ... }
fn n(&self) -> i32 { ... }
fn n_iter(&self) -> i32 { ... }
fn verbose(&self) -> bool { ... }
fn save_model(&self) -> bool { ... }
fn max_m(&self) -> i32 { ... }
fn max_n(&self) -> i32 { ... }
fn texture_max_m(&self) -> i32 { ... }
fn scales(&self) -> Vector<f32> { ... }
fn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()> { ... }
}
Expand description
Constant methods for crate::face::FacemarkAAM_Params
Required Methods§
fn as_raw_FacemarkAAM_Params(&self) -> *const c_void
Provided Methods§
fn model_filename(&self) -> String
fn m(&self) -> i32
fn n(&self) -> i32
fn n_iter(&self) -> i32
fn verbose(&self) -> bool
fn save_model(&self) -> bool
fn max_m(&self) -> i32
fn max_n(&self) -> i32
fn texture_max_m(&self) -> i32
fn scales(&self) -> Vector<f32>
Sourcefn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>
fn write(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>
\brief Read parameters from file, currently unused
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.