diff options
| author | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2019-10-18 14:12:28 +0200 |
|---|---|---|
| committer | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2019-10-18 14:12:28 +0200 |
| commit | 24936ad1d0a3489c766c819f2f824962c770cce0 (patch) | |
| tree | 48832280477a85c7fc7392379884a8d7a6a5eb25 /src/lib.rs | |
| parent | cab95623832c0473228f5ad12272f2438620aa68 (diff) | |
| download | mail-24936ad1d0a3489c766c819f2f824962c770cce0.tar.gz | |
implement: database_index_message
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -20,6 +20,7 @@ mod query; mod tags; mod thread; mod threads; +mod index; pub use database::{Database, DatabaseExt}; pub use directory::{Directory, DirectoryExt}; @@ -31,5 +32,6 @@ pub use query::{Query, QueryExt}; pub use tags::{Tags, TagsExt, TagsOwner}; pub use thread::{Thread, ThreadExt}; pub use threads::{Threads, ThreadsExt}; +pub use index::IndexOpts; -pub use ffi::{DatabaseMode, Sort};
\ No newline at end of file +pub use ffi::{DatabaseMode, Sort, DecryptionPolicy};
\ No newline at end of file |
