ipfs-sqlite-block-store 0.2.0

block store for ipfs, using sqlite
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::SortKey;
use std::time::Duration;

#[cfg(test)]
#[test]
fn sort_key_sort_order() {
    assert!(
        SortKey::new(None, i64::max_value())
            < SortKey::new(Some(Duration::default()), i64::min_value())
    );
}