Type Alias AccessoryStateValue

Source
pub type AccessoryStateValue = Option<Vec<u8>>;
Expand description

The “value” half of a key/value pair from accessory state.

See NativeDB for more information.

Aliased Type§

enum AccessoryStateValue {
    None,
    Some(Vec<u8>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Vec<u8>)

Some value of type T.