1
2
3
4
5
6
7
8
9
10
11
12
mod content;

#[derive(Debug, Clone)]
pub struct EmptyObject;

impl std::ops::Deref for EmptyObject {
    type Target = ();

    fn deref(&self) -> &Self::Target {
        &()
    }
}