AttrValue

Type Alias AttrValue 

Source
pub type AttrValue = IString;
Expand description

Attribute value

Aliased Type§

pub enum AttrValue {
    Static(&'static str),
    Rc(Rc<str>),
}

Variants§

§

Static(&'static str)

A static string slice.

§

Rc(Rc<str>)

A reference counted string slice.