Files
serde/serde_derive/src/internals/mod.rs
T
2019-07-31 21:06:36 -07:00

16 lines
174 B
Rust

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,
}