MCPcopy Create free account
hub / github.com/elastic/devfiler / TableValueRef

Class TableValueRef

src/storage/table.rs:364–367  ·  view source on GitHub ↗

Reference to a table value, with lazy deserialization.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected