1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#![deny(missing_docs)]

//! This are Custom Enum codes for memorable and uniform response codes.
//! Enums are cheaper to compair than strings thereby guaranteeing efficiency.
//! 
//! ```
//! 
//! use custom_codes::{DbOps, CustomBool}; 
//! fn dbop () -> DbOps { 
//!   if db_insert() == true { 
//!       DbOps::Inserted 
//!   }else if db_insert() == false { 
//!       DbOps::Skipped 
//!   }else { 
//!       DbOps::ConnRefused 
//!   } 
//! }
//! 
//! ```
//! 
//!

pub use custom_codes::{
    DbOps, 
    CustomBool, 
    ExecCommand, 
    Networking, 
    Subscription, 
    FileOps, 
    DateTimeOp,
    ActivityStatus,
    Compression,
    SecOps,
    HardwareResources,
    ActivityInit,
    SecHardware
};

mod custom_codes;