[][src]Trait ignite_rs::IgniteObj

pub trait IgniteObj: WritableType + ReadableType { }

Combines the WritableType and ReadableType crates. Intended to be used in the #[derive(IgniteObj)] attribute to automatically generate serialization/deserialization for the user-defined structs

use ignite_rs_derive::IgniteObj; #[derive(IgniteObj)] struct MyType { bar: String, foo: i32, }

Implementors

Loading content...