pub struct AdapterMatch {
pub adapter_id: Option<String>,
pub confidence: Option<f64>,
pub evidence: Option<Vec<String>>,
}Fields§
§adapter_id: Option<String>§confidence: Option<f64>§evidence: Option<Vec<String>>Implementations§
Source§impl AdapterMatch
impl AdapterMatch
pub fn new() -> AdapterMatch
Trait Implementations§
Source§impl Clone for AdapterMatch
impl Clone for AdapterMatch
Source§fn clone(&self) -> AdapterMatch
fn clone(&self) -> AdapterMatch
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 moreSource§impl Debug for AdapterMatch
impl Debug for AdapterMatch
Source§impl Default for AdapterMatch
impl Default for AdapterMatch
Source§fn default() -> AdapterMatch
fn default() -> AdapterMatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdapterMatch
impl<'de> Deserialize<'de> for AdapterMatch
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
Source§impl PartialEq for AdapterMatch
impl PartialEq for AdapterMatch
Source§fn eq(&self, other: &AdapterMatch) -> bool
fn eq(&self, other: &AdapterMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdapterMatch
impl Serialize for AdapterMatch
impl StructuralPartialEq for AdapterMatch
Auto Trait Implementations§
impl Freeze for AdapterMatch
impl RefUnwindSafe for AdapterMatch
impl Send for AdapterMatch
impl Sync for AdapterMatch
impl Unpin for AdapterMatch
impl UnsafeUnpin for AdapterMatch
impl UnwindSafe for AdapterMatch
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