add MapExpect to Result
add DebugInspect to Result move Result typedef into unit Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
99ad404ea9
commit
2709995f84
5 changed files with 78 additions and 5 deletions
|
@ -7,6 +7,7 @@ pub mod log;
|
|||
pub mod metrics;
|
||||
pub mod mods;
|
||||
pub mod pdu;
|
||||
pub mod result;
|
||||
pub mod server;
|
||||
pub mod utils;
|
||||
|
||||
|
@ -15,13 +16,12 @@ pub use config::Config;
|
|||
pub use error::Error;
|
||||
pub use info::{rustc_flags_capture, version, version::version};
|
||||
pub use pdu::{PduBuilder, PduCount, PduEvent};
|
||||
pub use result::Result;
|
||||
pub use server::Server;
|
||||
pub use utils::{ctor, dtor, implement};
|
||||
|
||||
pub use crate as conduit_core;
|
||||
|
||||
pub type Result<T, E = Error> = std::result::Result<T, E>;
|
||||
|
||||
rustc_flags_capture! {}
|
||||
|
||||
#[cfg(not(conduit_mods))]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue