D | primitives.rs | 79 pub struct WIPOffset<T>(UOffsetT, PhantomData<T>); struct 83 impl<T> Copy for WIPOffset<T> {} implementation 84 impl<T> Clone for WIPOffset<T> { implementation 86 fn clone(&self) -> WIPOffset<T> { in clone() 87 WIPOffset::new(self.0.clone()) in clone() 90 impl<T> PartialEq for WIPOffset<T> { implementation 91 fn eq(&self, o: &WIPOffset<T>) -> bool { in eq() 96 impl<T> Deref for WIPOffset<T> { implementation 103 impl<'a, T: 'a> WIPOffset<T> { implementation 106 pub fn new(o: UOffsetT) -> WIPOffset<T> { in new() [all …]
|