Skip to main content

AttributeValueBytes

Type Alias AttributeValueBytes 

Source
pub type AttributeValueBytes = AttributeValue<BytesData>;

Aliased Type§

pub enum AttributeValueBytes {
    String(BytesString),
    Float(f64),
    Int(i64),
    Bool(bool),
    Bytes(Bytes),
    KeyValue(VecMap<BytesString, AttributeValue<BytesData>>),
    List(Vec<AttributeValue<BytesData>>),
}

Variants§