MCPcopy Create free account
hub / github.com/apache/arrow-rs / fmt

Method fmt

arrow-buffer/src/bytes.rs:225–231  ·  view source on GitHub ↗
(&self, f: &mut Formatter)

Source from the content-addressed store, hash-verified

223
224impl Debug for Bytes {
225 fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
226 write!(f, "Bytes {{ ptr: {:?}, len: {}, data: ", self.ptr, self.len,)?;
227
228 f.debug_list().entries(self.iter()).finish()?;
229
230 write!(f, " }}")
231 }
232}
233
234impl From<bytes::Bytes> for Bytes {

Callers

nothing calls this directly

Calls 3

finishMethod · 0.45
entriesMethod · 0.45
iterMethod · 0.45

Tested by

no test coverage detected