spare_buffer/
primitive.rs1pub trait Primitive: Copy + Clone {}
8
9impl Primitive for bool {}
10impl Primitive for char {}
11impl Primitive for f32 {}
12impl Primitive for f64 {}
13impl Primitive for i8 {}
14impl Primitive for i16 {}
15impl Primitive for i32 {}
16impl Primitive for i64 {}
17impl Primitive for i128 {}
18impl Primitive for isize {}
19impl Primitive for u8 {}
20impl Primitive for u16 {}
21impl Primitive for u32 {}
22impl Primitive for u64 {}
23impl Primitive for u128 {}
24impl Primitive for usize {}