pub struct LinkMatchDetail {
pub source_id: String,
pub target_id: String,
pub expected_type: String,
pub found: bool,
pub found_type: Option<String>,
pub type_correct: bool,
}Expand description
Per-link match result.
Fields§
§source_id: String§target_id: String§expected_type: String§found: bool§found_type: Option<String>§type_correct: boolTrait Implementations§
Source§impl Debug for LinkMatchDetail
impl Debug for LinkMatchDetail
Auto Trait Implementations§
impl Freeze for LinkMatchDetail
impl RefUnwindSafe for LinkMatchDetail
impl Send for LinkMatchDetail
impl Sync for LinkMatchDetail
impl Unpin for LinkMatchDetail
impl UnsafeUnpin for LinkMatchDetail
impl UnwindSafe for LinkMatchDetail
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