pub struct AmbiguityEntry {
pub entity_id: Option<String>,
pub ambiguity_type: String,
pub description: String,
pub sources: Vec<String>,
pub recommendation: String,
}Fields§
§entity_id: Option<String>§ambiguity_type: String§description: String§sources: Vec<String>§recommendation: StringTrait Implementations§
Source§impl Clone for AmbiguityEntry
impl Clone for AmbiguityEntry
Source§fn clone(&self) -> AmbiguityEntry
fn clone(&self) -> AmbiguityEntry
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 AmbiguityEntry
impl Debug for AmbiguityEntry
Source§impl<'de> Deserialize<'de> for AmbiguityEntry
impl<'de> Deserialize<'de> for AmbiguityEntry
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 AmbiguityEntry
impl RefUnwindSafe for AmbiguityEntry
impl Send for AmbiguityEntry
impl Sync for AmbiguityEntry
impl Unpin for AmbiguityEntry
impl UnsafeUnpin for AmbiguityEntry
impl UnwindSafe for AmbiguityEntry
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