1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use std::marker::PhantomData;

use super::Pusherator;

#[derive(Clone, Copy)]
pub struct Null<In> {
    phantom: PhantomData<In>,
}

impl<In> Null<In> {
    pub fn new() -> Self {
        Self {
            phantom: Default::default(),
        }
    }
}

impl<In> Default for Null<In> {
    fn default() -> Self {
        Self::new()
    }
}

impl<In> Pusherator for Null<In> {
    type Item = In;
    fn give(&mut self, _: Self::Item) {}
}