Enum skimmer::data::Chunk [] [src]

pub enum Chunk<'a> {
    Slice(&'a [u8]),
    Vec(Vec<u8>),
}

Variants

Methods

impl<'a> Chunk<'a>
[src]

Trait Implementations

impl<'a, 'b> Into<&'b [u8]> for &'b Chunk<'a>
[src]

Performs the conversion.

impl<'a> From<Vec<u8>> for Chunk<'a>
[src]

Performs the conversion.