[][src]Trait sfv::ParseValue

pub trait ParseValue {
    fn parse(input_chars: &mut Peekable<Chars>) -> Result<Self, &'static str>
    where
        Self: Sized
; }

Implements parsing logic for each structured field value type.

Required methods

fn parse(input_chars: &mut Peekable<Chars>) -> Result<Self, &'static str> where
    Self: Sized

This method should not be used for parsing input into structured field value. Use Parser::parse_item, Parser::parse_list or Parsers::parse_dictionary for that.

Loading content...

Implementors

impl ParseValue for Item[src]

impl ParseValue for Dictionary[src]

impl ParseValue for List[src]

Loading content...