Type Alias phat_js::Value

source ·
pub type Value = GenericValue<String, Vec<u8>>;

Aliased Type§

enum Value {
    String(String),
    Bytes(Vec<u8>),
    Undefined,
}

Variants§

§

String(String)

§

Bytes(Vec<u8>)

§

Undefined