Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
44
unsafe impl Traverse for PyObjectRef {
45
fn traverse(&self, traverse_fn: &mut TraverseFn<'_>) {
46
traverse_fn(self)
47
}
48
}
49
50
unsafe impl Traverse for PyStackRef {
Callers
nothing calls this directly
Calls
8
new
Function · 0.85
as_object
Method · 0.45
try_lock
Method · 0.45
push
Method · 0.45
count
Method · 0.45
map
Method · 0.45
iter
Method · 0.45
as_ref
Method · 0.45
Tested by
no test coverage detected