Trait rsmorphy::container::abc::MorphySerde [] [src]

pub trait MorphySerde: Sized {
    fn encode<W: Write>(&self, f: &mut W) -> Result;
    fn decode(s: &str) -> Result<(&str, Self), DecodeError>;

    fn encoded(&self) -> String { ... }
}

Required Methods

Provided Methods

Implementors