pub struct ResolveCandidate {
pub identifier: Option<String>,
pub display_name: Option<String>,
pub match_tier: Option<String>,
pub extra: HashMap<String, Value>,
}Expand description
A single candidate from a resolve call.
Fields§
§identifier: Option<String>Canonical UEI (entity target) or organization key (organization target).
display_name: Option<String>Human-readable name.
match_tier: Option<String>Confidence label ("low" / "medium" / "high"). Pro+ tier only.
extra: HashMap<String, Value>Forward-compatible bucket for any unrecognized fields the server adds.
Trait Implementations§
Source§impl Clone for ResolveCandidate
impl Clone for ResolveCandidate
Source§fn clone(&self) -> ResolveCandidate
fn clone(&self) -> ResolveCandidate
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 ResolveCandidate
impl Debug for ResolveCandidate
Source§impl Default for ResolveCandidate
impl Default for ResolveCandidate
Source§fn default() -> ResolveCandidate
fn default() -> ResolveCandidate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResolveCandidate
impl<'de> Deserialize<'de> for ResolveCandidate
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 ResolveCandidate
impl PartialEq for ResolveCandidate
Source§fn eq(&self, other: &ResolveCandidate) -> bool
fn eq(&self, other: &ResolveCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolveCandidate
impl Serialize for ResolveCandidate
impl StructuralPartialEq for ResolveCandidate
Auto Trait Implementations§
impl Freeze for ResolveCandidate
impl RefUnwindSafe for ResolveCandidate
impl Send for ResolveCandidate
impl Sync for ResolveCandidate
impl Unpin for ResolveCandidate
impl UnsafeUnpin for ResolveCandidate
impl UnwindSafe for ResolveCandidate
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