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.

Required 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