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),
}