-
Notifications
You must be signed in to change notification settings - Fork 369
/
Copy pathiterator.rs
35 lines (29 loc) · 916 Bytes
/
iterator.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use crate::errors::StdError;
use std::convert::TryFrom;
/// A Key-Value pair, returned from our iterators
pub type Pair<V = Vec<u8>> = (Vec<u8>, V);
/// KV is a Key-Value pair, returned from our iterators
#[deprecated(since = "0.14.0", note = "Renamed to Pair")]
#[allow(clippy::upper_case_acronyms)]
pub type KV<V = Vec<u8>> = Pair<V>;
#[derive(Copy, Clone)]
// We assign these to integers to provide a stable API for passing over FFI (to wasm and Go)
pub enum Order {
Ascending = 1,
Descending = 2,
}
impl TryFrom<i32> for Order {
type Error = StdError;
fn try_from(value: i32) -> Result<Self, Self::Error> {
match value {
1 => Ok(Order::Ascending),
2 => Ok(Order::Descending),
_ => Err(StdError::generic_err("Order must be 1 or 2")),
}
}
}
impl From<Order> for i32 {
fn from(original: Order) -> i32 {
original as _
}
}