Trait url::parser::Pattern

source ·
pub trait Pattern {
    // Required method
    fn split_prefix(self, input: &mut Input<'_>) -> bool;
}

Required Methods§

source

fn split_prefix(self, input: &mut Input<'_>) -> bool

Implementations on Foreign Types§

source§

impl Pattern for char

source§

fn split_prefix(self, input: &mut Input<'_>) -> bool

source§

impl<'a> Pattern for &'a str

source§

fn split_prefix(self, input: &mut Input<'_>) -> bool

Implementors§

source§

impl<F: FnMut(char) -> bool> Pattern for F