+6
constellation/src/storage/mod.rs
+6
constellation/src/storage/mod.rs
···
816
816
version: (0, 0),
817
817
items: vec![],
818
818
next: None,
819
+
total: 0,
819
820
}
820
821
);
821
822
···
852
853
rkey: "asdf".into(),
853
854
},],
854
855
next: None,
856
+
total: 1,
855
857
}
856
858
);
857
859
···
869
871
version: (0, 0),
870
872
items: vec![],
871
873
next: None,
874
+
total: 0,
872
875
}
873
876
);
874
877
···
926
929
},
927
930
],
928
931
next: None,
932
+
total: 2,
929
933
}
930
934
);
931
935
···
957
961
},
958
962
],
959
963
next: Some(1),
964
+
total: 3,
960
965
}
961
966
);
962
967
···
974
979
version: (0, 0),
975
980
items: vec![],
976
981
next: None,
982
+
total: 0,
977
983
}
978
984
);
979
985
});