diff options
| author | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2019-10-25 09:12:59 +0200 |
|---|---|---|
| committer | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2019-10-25 09:31:20 +0200 |
| commit | 51f063aaf2cab590a6cfe42e1da3f7bbd6423ba5 (patch) | |
| tree | e0fa5ad5c52084bbae12bd65e5f5a424699702a5 /src/lib.rs | |
| parent | 6813fbb5226acfa53e30f41564bb41c93d808656 (diff) | |
| download | mail-51f063aaf2cab590a6cfe42e1da3f7bbd6423ba5.tar.gz | |
add scopable atomic operation and configlist
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -21,8 +21,9 @@ mod tags; mod thread; mod threads; mod index; +mod config_list; -pub use database::{Database, DatabaseExt}; +pub use database::{Database, DatabaseExt, AtomicOperation}; pub use directory::{Directory, DirectoryExt}; pub use error::Error; pub use filenames::{Filenames, FilenamesOwner}; @@ -33,7 +34,8 @@ pub use tags::{Tags, TagsExt, TagsOwner}; pub use thread::{Thread, ThreadExt}; pub use threads::{Threads, ThreadsExt}; pub use index::IndexOpts; +pub use config_list::ConfigList; -pub use ffi::{DatabaseMode, Sort, DecryptionPolicy}; +pub use ffi::{Status, DatabaseMode, Sort, DecryptionPolicy}; pub use utils::{ScopedSupercow, ScopedPhantomcow};
\ No newline at end of file |
