MCPcopy Create free account
hub / github.com/apache/datafusion / fmt

Method fmt

datafusion/datasource/src/decoder.rs:90–95  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

88
89impl<T: Decoder> fmt::Debug for DecoderDeserializer<T> {
90 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
91 f.debug_struct("Deserializer")
92 .field("buffered_queue", &self.buffered_queue)
93 .field("finalized", &self.finalized)
94 .finish()
95 }
96}
97
98impl<T: Decoder> BatchDeserializer<Bytes> for DecoderDeserializer<T> {

Callers

nothing calls this directly

Calls 2

finishMethod · 0.45
fieldMethod · 0.45

Tested by

no test coverage detected