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

Method traverse

crates/vm/src/object/traverse.rs:45–47  ·  view source on GitHub ↗
(&self, traverse_fn: &mut TraverseFn<'_>)

Source from the content-addressed store, hash-verified

43
44unsafe impl Traverse for PyObjectRef {
45 fn traverse(&self, traverse_fn: &mut TraverseFn<'_>) {
46 traverse_fn(self)
47 }
48}
49
50unsafe impl Traverse for PyStackRef {

Callers

nothing calls this directly

Calls 8

newFunction · 0.85
as_objectMethod · 0.45
try_lockMethod · 0.45
pushMethod · 0.45
countMethod · 0.45
mapMethod · 0.45
iterMethod · 0.45
as_refMethod · 0.45

Tested by

no test coverage detected