pub struct HardwareMatchStatus {
pub percentage: f32,
pub matched_factors: Vec<String>,
pub unmatched_factors: Vec<String>,
}Expand description
Hardware binding match status
Fields§
§percentage: f32Match percentage (0-100)
matched_factors: Vec<String>Factors that matched
unmatched_factors: Vec<String>Factors that did not match
Trait Implementations§
Source§impl Clone for HardwareMatchStatus
impl Clone for HardwareMatchStatus
Source§fn clone(&self) -> HardwareMatchStatus
fn clone(&self) -> HardwareMatchStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HardwareMatchStatus
impl Debug for HardwareMatchStatus
Source§impl<'de> Deserialize<'de> for HardwareMatchStatus
impl<'de> Deserialize<'de> for HardwareMatchStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HardwareMatchStatus
impl RefUnwindSafe for HardwareMatchStatus
impl Send for HardwareMatchStatus
impl Sync for HardwareMatchStatus
impl Unpin for HardwareMatchStatus
impl UnsafeUnpin for HardwareMatchStatus
impl UnwindSafe for HardwareMatchStatus
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