MultiValue

Type Alias MultiValue 

Source
pub type MultiValue = Result<(u32, Vec<u8>), Status>;
Expand description

One position in a CMD_PROP_ARE: the property and the value the device reported, or the status that stands in its place.

Aliased Type§

pub enum MultiValue {
    Ok((u32, Vec<u8>)),
    Err(Status),
}

Variants§

§1.0.0

Ok((u32, Vec<u8>))

Contains the success value

§1.0.0

Err(Status)

Contains the error value