MCPcopy Create free account
hub / github.com/RustCV/RustCV / fmt

Method fmt

rustcv/src/core/mat.rs:57–64  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

55
56impl fmt::Debug for Mat {
57 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
58 f.debug_struct("Mat")
59 .field("rows", &self.rows)
60 .field("cols", &self.cols)
61 .field("channels", &self.channels)
62 .field("step", &self.step)
63 .finish()
64 }
65}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected