Enum rustc_graphviz::LabelText[][src]

pub enum LabelText<'a> {
    LabelStr(Cow<'a, str>),
    EscStr(Cow<'a, str>),
    HtmlStr(Cow<'a, str>),
}
Expand description

The text for a graphviz label on a node or edge.

Variants

LabelStr(Cow<'a, str>)

This kind of label preserves the text directly as is.

Occurrences of backslashes (\) are escaped, and thus appear as backslashes in the rendered label.

Tuple Fields of LabelStr

0: Cow<'a, str>
EscStr(Cow<'a, str>)

This kind of label uses the graphviz label escString type: https://www.graphviz.org/content/attrs#kescString

Occurrences of backslashes (\) are not escaped; instead they are interpreted as initiating an escString escape sequence.

Escape sequences of particular interest: in addition to \n to break a line (centering the line preceding the \n), there are also the escape sequences \l which left-justifies the preceding line and \r which right-justifies it.

Tuple Fields of EscStr

0: Cow<'a, str>
HtmlStr(Cow<'a, str>)

This uses a graphviz HTML string label. The string is printed exactly as given, but between < and >. No escaping is performed.

Tuple Fields of HtmlStr

0: Cow<'a, str>

Implementations

Renders text as string suitable for a label in a .dot file. This includes quotes or suitable delimiters.

Decomposes content into string suitable for making EscStr that yields same content as self. The result obeys the law render(lt) == render(EscStr(lt.pre_escaped_content())) for all lt: LabelText.

Puts suffix on a line below this label, with a blank line separator.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 40 bytes

Size for each variant: