(&self)
| 48 | |
| 49 | impl<T, C> Clone for Serialized<T, C> { |
| 50 | fn clone(&self) -> Self { |
| 51 | Self { |
| 52 | data: self.data.clone(), |
| 53 | _phantom: PhantomData, |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | impl<T: Serialize + DeserializeOwned, C: SerializationConfig> Serialized<T, C> { |
no outgoing calls