Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ data_limit
Method
data_limit
crates/vm/src/datastack.rs:45–47 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
43
/// Pointer past the last usable byte.
44
#[inline(always)]
45
fn data_limit(&self) -> *mut u8 {
46
unsafe { (self as *const Self as *mut u8).add(self.size) }
47
}
48
}
49
50
/// Per-thread data stack for bump-allocating frame-local data.
Callers
3
new
Method · 0.80
push_slow
Method · 0.80
pop_slow
Method · 0.80
Calls
1
add
Method · 0.45
Tested by
no test coverage detected