Enum ra_ap_rustc_graphviz::LabelText
source · 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.
EscStr(Cow<'a, str>)
This kind of label uses the graphviz label escString type: https://www.graphviz.org/docs/attr-types/escString
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.
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.