diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-19 16:23:29 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-19 16:23:29 +1300 |
commit | 47b25c05a6be51b93c909d38a19440d1c04ba2f8 (patch) | |
tree | 448c23c6d58a8407de45a4730cf972bd83713aa0 /src/lib.rs | |
parent | 8f410d1ead74b979481f1488a4dcddd33ea829c7 (diff) | |
download | vagabond-06b4917ac4712c02a7904521875ee01b102d8c2a.zip |
Large collection of changesv1.0.0
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1,10 +1,16 @@ #![feature(io_error_more)] +#![feature(never_type)] +mod entry; mod error; -pub use error::*; - mod operations; + +pub use entry::*; +pub use error::*; pub use operations::*; -mod entry; -pub use entry::{Entry, EntryType}; +pub use std::path::{Path, PathBuf}; + +pub type ReadResult<T> = Result<T, EntryReadError>; +pub type WriteResult<T> = Result<T, EntryWriteError>; + |