pub struct CandidateScoreInput {
pub skin_lab: Lab,
pub candidate_lab: Lab,
pub lip_lab: Option<Lab>,
pub iris_lab: Option<Lab>,
pub sclera_lab: Option<Lab>,
pub hair_lab: Option<Lab>,
pub brow_lab: Option<Lab>,
pub baseline_feature_michelson: Option<f32>,
pub goal_vector: GoalVector,
pub confidence: f32,
}Fields§
§skin_lab: Lab§candidate_lab: Lab§lip_lab: Option<Lab>§iris_lab: Option<Lab>§sclera_lab: Option<Lab>§hair_lab: Option<Lab>§brow_lab: Option<Lab>§baseline_feature_michelson: Option<f32>§goal_vector: GoalVector§confidence: f32Trait Implementations§
Source§impl Clone for CandidateScoreInput
impl Clone for CandidateScoreInput
Source§fn clone(&self) -> CandidateScoreInput
fn clone(&self) -> CandidateScoreInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CandidateScoreInput
impl RefUnwindSafe for CandidateScoreInput
impl Send for CandidateScoreInput
impl Sync for CandidateScoreInput
impl Unpin for CandidateScoreInput
impl UnsafeUnpin for CandidateScoreInput
impl UnwindSafe for CandidateScoreInput
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