Enum json_tools::BufferType 
                   
                       [−]
                   
               [src]
pub enum BufferType {
    Bytes(usize),
    Span,
}The type of Buffer you want in each Token
Variants
Bytes(usize)Use a Buffer::MultiByte were appropriate. Initialize it with the
given capcity (to obtain higher performance when pushing charcters)
SpanTrait Implementations
impl Debug for BufferType[src]
impl PartialEq for BufferType[src]
fn eq(&self, __arg_0: &BufferType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BufferType) -> bool
This method tests for !=.
impl Clone for BufferType[src]
fn clone(&self) -> BufferType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more