pub trait AbstractInput<'a, I>: InputTakeAtPosition<Item = I> + InputTake + Clone + Copy + FindSubstring<&'a str> + Slice<RangeFrom<usize>> + InputLength + InputIter + Compare<&'a str> + Debug + Into<&'a BStr> + Default {
    fn is_empty(&self) -> bool;
}

Required methods

Implementations on Foreign Types

Implementors