Trait ressa::CommentHandler[][src]

pub trait CommentHandler<'a> {
    fn handle_comment(&mut self, comment: Item<&'a str>);
}
Expand description

A comment handler will allow you to specify behavior about what to do with comments officially comments are supposed to operate the same as whitespace so the default behavior would be to throw away any comments found

Required methods

Implementors