pub struct LinkRow {
pub target: String,
pub exists: bool,
pub text: String,
}Expand description
A link out of a concept, as the viewer draws it.
Fields§
§target: StringThe target concept id.
exists: boolWhether the bundle contains it.
text: StringThe link’s own text.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkRow
impl RefUnwindSafe for LinkRow
impl Send for LinkRow
impl Sync for LinkRow
impl Unpin for LinkRow
impl UnsafeUnpin for LinkRow
impl UnwindSafe for LinkRow
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