Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ traverse
Method
traverse
crates/vm/src/protocol/iter.rs:19–21 ·
view source on GitHub ↗
(&self, tracer_fn: &mut TraverseFn<'_>)
Source
from the content-addressed store, hash-verified
17
18
unsafe impl<O: Borrow<PyObject>> Traverse for PyIter<O> {
19
fn traverse(&self, tracer_fn: &mut TraverseFn<'_>) {
20
self.0.borrow().traverse(tracer_fn);
21
}
22
}
23
24
impl PyIter<PyObjectRef> {
Callers
nothing calls this directly
Calls
1
borrow
Method · 0.45
Tested by
no test coverage detected