flyer 2.1.9

HTTP framework for rust
Documentation
use crate::response::Response;

pub struct Next {
    pub(crate) is_move: bool,
}

impl Next {
    pub(crate) fn new() -> Self {
        return Self {
            is_move: false
        } 
    }

    pub fn handle<'a>(&mut self, res: &'a mut Response) -> &'a mut Response {
        self.is_move = true;

        return res;
    }
}