pub struct Link {
pub children: Vec<Node>,
pub position: Option<Position>,
pub url: String,
pub title: Option<String>,
}Expand description
Link.
> | [a](b)
^^^^^^Fields§
§children: Vec<Node>Content model.
position: Option<Position>Positional info.
url: StringURL to the referenced resource.
title: Option<String>Advisory info for the resource, such as something that would be appropriate for a tooltip.
Trait Implementations§
impl Eq for Link
impl StructuralPartialEq for Link
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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