1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
use crate::type_information;

#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq)]
pub struct None {
    _private: [u8; 0],
}

impl None {
    pub fn new() -> Self {
        Self { _private: [] }
    }
}

type_information!(byte_string, crate::none::None);