elyze 1.5.5

Elyze is an extensible general purpose framework parser allowing to parser any type of data without allocation.
Documentation
use crate::errors::ParseResult;
use crate::peek::{PeekResult, Peekable, UntilEnd};
use crate::scanner::Scanner;

impl<'a> Peekable<'a, u8> for UntilEnd<u8> {
    /// Peeks at the current position of the `Scanner` until it reaches the end
    /// of the data.
    ///
    /// # Arguments
    ///
    /// * `data` - The `Scanner` to use when matching.
    ///
    /// # Returns
    ///
    /// A `PeekResult` where the `end_slice` is the current position of the
    /// `Scanner`, and `start` and `end` are both `()`.
    fn peek(&self, data: &Scanner<'a, u8>) -> ParseResult<PeekResult> {
        Ok(PeekResult::Found {
            end_slice: data.remaining().len(),
            start_element_size: 0,
            end_element_size: 0,
        })
    }
}