pub trait AeonSerialize {
// Required methods
fn to_aeon(&self) -> SerializeResult<String>;
fn to_aeon_value(&self) -> SerializeResult<AeonValue>;
fn create_macros(insert_self: bool) -> HashMap<String, AeonMacro>;
}Required Methods§
fn to_aeon(&self) -> SerializeResult<String>
fn to_aeon_value(&self) -> SerializeResult<AeonValue>
fn create_macros(insert_self: bool) -> HashMap<String, AeonMacro>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.