MCPcopy Index your code
hub / github.com/RustPython/RustPython / fmt

Method fmt

crates/stdlib/src/mmap.rs:218–224  ·  view source on GitHub ↗
(&self, f: &mut core::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

216 #[cfg(windows)]
217 impl core::fmt::Debug for NamedMmap {
218 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
219 f.debug_struct("NamedMmap")
220 .field("map_handle", &self.map_handle)
221 .field("view_ptr", &self.view_ptr)
222 .field("len", &self.len)
223 .finish()
224 }
225 }
226
227 #[cfg(windows)]

Callers

nothing calls this directly

Calls 1

finishMethod · 0.45

Tested by

no test coverage detected