pub trait Parser: Display + FromStr {
    fn parse(string: &str) -> Result<(&str, Self), Err<VerboseError<&str>>>
    where
        Self: Sized
; }
Expand description

Operations to parse a string literal into an object.

Required Methods§

Parses a string literal into an object.

Implementations on Foreign Types§

Parses a string into a field circuit.

Parses a string into a boolean.

Parses a string into a group circuit.

Parses a string into a scalar circuit.

Parses a string into a integer circuit.

Implementors§