pub struct Link {
pub text: String,
pub alias: Option<String>,
pub heading_ref: Option<String>,
pub block_ref: Option<String>,
pub is_embed: bool,
pub link_type: LinkType,
}Fields§
§text: String§alias: Option<String>§heading_ref: Option<String>§block_ref: Option<String>§is_embed: bool§link_type: LinkTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnsafeUnpin 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