Trait jql_parser::tokens::View

source ·
pub trait View {
    // Required method
    fn stringify(&self) -> String;
}
Expand description

Trait used to expose custom display methods.

Required Methods§

source

fn stringify(&self) -> String

Returns a stringified version of self.

Implementors§

source§

impl<'a, T: AsRef<[Token<'a>]>> View for T