pub type StoreReadItemResult = Result<(String, Vec<u8>), ReadError>;

Aliased Type§

enum StoreReadItemResult {
    Ok((String, Vec<u8>)),
    Err(ReadError),
}

Variants§

§1.0.0

Ok((String, Vec<u8>))

Contains the success value

§1.0.0

Err(ReadError)

Contains the error value