Types that can be parsed.
trait Parse { /* Required methods */ fn parse<P>(&self) -> Result<P, Errno> where P: Parsable, }
&self
Tries to parse the object.