1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
pub mod ast;
pub mod attr;

mod ctxt;
pub use self::ctxt::Ctxt;

mod case;
mod check;
mod symbol;

#[derive(Copy, Clone)]
pub enum Derive {
    Serialize,
    Deserialize,
}