pub enum Variable {
    Int(i32),
    Float(f32),
    UInt(usize),
    String(String),
}
Expand description

Enum to wrap variables for passing into the HtmlConstructor when constructing a html page

Variants

Int(i32)

Tuple Fields

0: i32

Float(f32)

Tuple Fields

0: f32

UInt(usize)

Tuple Fields

0: usize

String(String)

Tuple Fields

0: String

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.