pub trait FromPlain: Sized {
    type Err;
    fn from_plain(s: &str) -> Result<Self, Self::Err>;
}
Expand description

Parse a value from its Conjure PLAIN string representation.

Associated Types

The error type returned when parsing fails.

Required methods

Parse a value from its Conjure PLAIN string representation.

Implementations on Foreign Types

Implementors