Type Alias XmlTextContent

Source
pub type XmlTextContent = OptionAzString;
Expand description

(Unparsed) text content of an XML node, such as the “Hello” in <button>Hello</button>.

Aliased Type§

enum XmlTextContent {
    None,
    Some(AzString),
}

Variants§

§

None

§

Some(AzString)