mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 08:18:03 +00:00
16 lines
174 B
Rust
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,
|
|
}
|