Trait tapa_trait_serde::IYamlSerializable[][src]

pub trait IYamlSerializable<T = Self> where
    Self: DeserializeOwned + Serialize + Send + Sized
{ fn from_yaml_string(yaml_string: &str) -> AnyResult<Self> { ... }
fn from_yaml_bytes(yaml_slice: &[u8]) -> AnyResult<Self> { ... }
fn to_yaml_string(&self) -> String { ... }
fn to_yaml_bytes(&self) -> Vec<u8> { ... } }

Provided methods

Implementors