pub struct GoldLink {
pub source_id: String,
pub target_id: String,
pub link_type: String,
pub note: String,
}Expand description
A single gold-standard link for link benchmarking.
Fields§
§source_id: String§target_id: String§link_type: String§note: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for GoldLink
impl<'de> Deserialize<'de> for GoldLink
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 GoldLink
impl RefUnwindSafe for GoldLink
impl Send for GoldLink
impl Sync for GoldLink
impl Unpin for GoldLink
impl UnsafeUnpin for GoldLink
impl UnwindSafe for GoldLink
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