Reference to a table value, with lazy deserialization.
| 362 | |
| 363 | /// Reference to a table value, with lazy deserialization. |
| 364 | pub struct TableValueRef<T: rkyv::Archive, S: AsRef<[u8]>> { |
| 365 | data: S, |
| 366 | _marker: PhantomData<(T::Archived, S)>, |
| 367 | } |
| 368 | |
| 369 | impl<T: rkyv::Archive, S: AsRef<[u8]>> TableValueRef<T, S> { |
| 370 | /// Create a new table value reference. |
nothing calls this directly
no outgoing calls
no test coverage detected