Type Alias uniffi_bindgen::interface::Literal

source ·
pub type Literal = LiteralMetadata;

Aliased Type§

enum Literal {
    Boolean(bool),
    String(String),
    UInt(u64, Radix, Type),
    Int(i64, Radix, Type),
    Float(String, Type),
    Enum(String, Type),
    EmptySequence,
    EmptyMap,
    None,
    Some {
        inner: Box<LiteralMetadata>,
    },
}

Variants§

§

Boolean(bool)

§

String(String)

§

UInt(u64, Radix, Type)

§

Int(i64, Radix, Type)

§

Float(String, Type)

§

Enum(String, Type)

§

EmptySequence

§

EmptyMap

§

None

§

Some

Fields

§inner: Box<LiteralMetadata>