MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / fmt

Method fmt

src/repr/src/row.rs:741–745  ·  view source on GitHub ↗

Debug representation using the internal datums

(&self, f: &mut fmt::Formatter)

Source from the content-addressed store, hash-verified

739impl fmt::Debug for RowRef {
740 /// Debug representation using the internal datums
741 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
742 f.write_str("RowRef{")?;
743 f.debug_list().entries(&*self).finish()?;
744 f.write_str("}")
745 }
746}
747
748/// Packs datums into a [`Row`].

Callers

nothing calls this directly

Calls 7

fieldMethod · 0.80
enumerateMethod · 0.80
write_strMethod · 0.45
finishMethod · 0.45
entriesMethod · 0.45
iterMethod · 0.45
datumMethod · 0.45

Tested by

no test coverage detected