pub trait ListRequestTrait: Sized {
    fn list_into_string(vec: Vec<Self>) -> Result<String, String>;
fn list_from_string(data: &str) -> Result<Vec<Self>, String>; }
Expand description

Ensures that vector of objects of this type is serializable and deserializable so can be used for defining a resource.

Required methods

Implementors