url_crawl

Enum IterItem

source
pub enum IterItem<'a> {
    Path {
        path: &'a [u8],
        before: &'a [u8],
        quote_type: QuoteType,
    },
    Last(&'a [u8]),
}

Variants§

§

Path

Fields

§path: &'a [u8]
§before: &'a [u8]
§quote_type: QuoteType
§

Last(&'a [u8])

Trait Implementations§

source§

impl<'a> Clone for IterItem<'a>

source§

fn clone(&self) -> IterItem<'a>