pub struct ProviderCandidate {
pub provider: String,
pub confidence: f64,
pub retrieved_at: String,
pub data: Value,
}Fields§
§provider: String§confidence: f64§retrieved_at: String§data: ValueImplementations§
Source§impl ProviderCandidate
impl ProviderCandidate
pub fn has_supported_shape(&self) -> bool
Trait Implementations§
Source§impl Clone for ProviderCandidate
impl Clone for ProviderCandidate
Source§fn clone(&self) -> ProviderCandidate
fn clone(&self) -> ProviderCandidate
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 ProviderCandidate
impl Debug for ProviderCandidate
Source§impl<'de> Deserialize<'de> for ProviderCandidate
impl<'de> Deserialize<'de> for ProviderCandidate
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 ProviderCandidate
impl PartialEq for ProviderCandidate
Source§impl Serialize for ProviderCandidate
impl Serialize for ProviderCandidate
impl StructuralPartialEq for ProviderCandidate
Auto Trait Implementations§
impl Freeze for ProviderCandidate
impl RefUnwindSafe for ProviderCandidate
impl Send for ProviderCandidate
impl Sync for ProviderCandidate
impl Unpin for ProviderCandidate
impl UnsafeUnpin for ProviderCandidate
impl UnwindSafe for ProviderCandidate
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