pub struct SemanticLink {
pub rel: String,
pub target: String,
pub confidence: Option<f32>,
}Fields§
§rel: String§target: String§confidence: Option<f32>Trait Implementations§
Source§impl Clone for SemanticLink
impl Clone for SemanticLink
Source§fn clone(&self) -> SemanticLink
fn clone(&self) -> SemanticLink
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 SemanticLink
impl Debug for SemanticLink
Source§impl<'de> Deserialize<'de> for SemanticLink
impl<'de> Deserialize<'de> for SemanticLink
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 SemanticLink
impl PartialEq for SemanticLink
Source§impl Serialize for SemanticLink
impl Serialize for SemanticLink
impl StructuralPartialEq for SemanticLink
Auto Trait Implementations§
impl Freeze for SemanticLink
impl RefUnwindSafe for SemanticLink
impl Send for SemanticLink
impl Sync for SemanticLink
impl Unpin for SemanticLink
impl UnsafeUnpin for SemanticLink
impl UnwindSafe for SemanticLink
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