orx_iterable/obj_safe/sources/
empty.rs

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use crate::{
    obj_safe::{CollectionMutObj, CollectionObj, IterableObj},
    sources::{Empty, EmptyCol},
    Collection, CollectionMut, Iterable,
};
use std::boxed::Box;

impl<T> IterableObj for Empty<T> {
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(self.iter())
    }
}

impl<T> IterableObj for core::iter::Empty<T> {
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(self.iter())
    }
}

// col

impl<'a, T> IterableObj for &'a EmptyCol<T> {
    type Item = &'a T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(self.iter())
    }
}

impl<T> CollectionObj for EmptyCol<T> {
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = &Self::Item> + '_> {
        Box::new(self.iter())
    }
}

impl<T> CollectionMutObj for EmptyCol<T> {
    fn boxed_iter_mut(&mut self) -> Box<dyn Iterator<Item = &mut Self::Item> + '_> {
        Box::new(self.iter_mut())
    }
}