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

Method fmt

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

Source from the content-addressed store, hash-verified

186
187 impl core::fmt::Debug for Overlapped {
188 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
189 let zelf = self.inner.lock();
190 f.debug_struct("Overlapped")
191 .field("handle", &zelf.handle)
192 .field("error", &zelf.error)
193 .field("data", &zelf.data)
194 .finish()
195 }
196 }
197
198 #[derive(Debug)]

Callers

nothing calls this directly

Calls 3

lockMethod · 0.45
finishMethod · 0.45
lenMethod · 0.45

Tested by

no test coverage detected