Struct comrak::nodes::NodeLink [] [src]

pub struct NodeLink {
    pub url: Vec<u8>,
    pub title: Vec<u8>,
}

The details of a link's destination, or an image's source.

Fields

The URL for the link destination or image source.

The title for the link or image.

Note this field is used for the title attribute by the HTML formatter even for images; alt text is supplied in the image inline text.

Trait Implementations

impl Debug for NodeLink
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for NodeLink
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for NodeLink

impl Sync for NodeLink