Struct amqp0_parser_nom::pool::NoParserPool
[−]
[src]
pub struct NoParserPool;
Creates objects as needed (no pools, no configuration, no attributes)
Trait Implementations
impl ParserPool for NoParserPool
[src]
fn new_table_hashmap(&mut self,
cap: usize)
-> HashMap<Cow<'static, str>, Value<'static>>
cap: usize)
-> HashMap<Cow<'static, str>, Value<'static>>
Given a capacity, returns a Table
fn new_values_vec(&mut self, _: &[u8]) -> Vec<Value<'static>>
Given a capacity, returns a vector for Vals Most likely to be used to assemble a List Read more
fn new_table_entries_vec(&mut self,
_: &[u8])
-> Vec<(&'static str, Value<'static>)>
_: &[u8])
-> Vec<(&'static str, Value<'static>)>
Given the bytes for a table, returns a Vec to accept table entries Most likely to be used to assemble a table Read more