zen_rs::aspects

Type Alias Link

Source
pub type Link = Option<Path>;
Expand description

Represents a hyperlink.

Note: This is applicable only for HTML/Leptos render attributes and will be ignored for other render types.

For example, this corresponds to an HTML href attribute.

Aliased Type§

enum Link {
    None,
    Some(String),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.