Trait sqlite3_parser::ast::TokenStream[][src]

pub trait TokenStream {
    type Error;
    fn append(
        &mut self,
        ty: TokenType,
        value: Option<&str>
    ) -> Result<(), Self::Error>; }

Associated Types

Loading content...

Required methods

fn append(
    &mut self,
    ty: TokenType,
    value: Option<&str>
) -> Result<(), Self::Error>
[src]

Loading content...

Implementors

impl TokenStream for ParameterInfo[src]

type Error = ParseIntError

Loading content...