pub enum LabelText<'a> {
LabelStr(MaybeOwned<'a>),
EscStr(MaybeOwned<'a>),
}The text for a graphviz label on a node or edge.
Variants
LabelStr | 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 | This kind of label uses the graphviz label escString type:
http://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.
|
Methods
Renders text as string suitable for a label in a .dot file.
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).