Derive Macro nandoize::PersistableDerive
source · #[derive(PersistableDerive)]Expand description
Derive macro used to generate an empty implementation of Persistable
for the specified struct.
Examples
#[derive(PersistableDerive)]
struct TestStruct {
x: u32,
y: i32,
}