pub trait AeonSerialize {
    fn to_aeon(&self) -> String;
    fn serialize_aeon_property(&self) -> AeonValue;
    fn create_macros(insert_self: bool) -> HashMap<String, Macro>;
}

Required Methods

Implementations on Foreign Types

Implementors