Skip to content

Commit

Permalink
Export MutInPlaceValue trait
Browse files Browse the repository at this point in the history
This allows users to implement their types for insert_reserve() support
  • Loading branch information
cberner committed Dec 4, 2023
1 parent 8d7810d commit e5cf573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub use table::{
};
pub use transactions::{DatabaseStats, Durability, ReadTransaction, WriteTransaction};
pub use tree_store::{AccessGuard, AccessGuardMut, Savepoint};
pub use types::{RedbKey, RedbValue, TypeName};
pub use types::{MutInPlaceValue, RedbKey, RedbValue, TypeName};

type Result<T = (), E = StorageError> = std::result::Result<T, E>;

Expand Down

0 comments on commit e5cf573

Please sign in to comment.