Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytecodealliance/rustix
/ add
Method
add
src/timespec.rs:230–233 ·
view source on GitHub ↗
(self, rhs: Self)
Source
from the content-addressed store, hash-verified
228
type Output = Self;
229
230
fn add(self, rhs: Self) -> Self {
231
self.checked_add(rhs)
232
.expect(
"overflow when adding timespecs"
)
233
}
234
}
235
236
impl AddAssign for Timespec {
Callers
13
read_sun_path0
Function · 0.80
init_from_sysinfo_ehdr
Function · 0.80
match_version
Method · 0.80
check_sym
Method · 0.80
sym
Method · 0.80
base_plus
Method · 0.80
next
Method · 0.80
init_from_envp
Function · 0.80
init_from_auxp
Function · 0.80
with_c_str
Function · 0.80
with_c_str_slow_path
Function · 0.80
next_back
Method · 0.80
Calls
1
checked_add
Method · 0.80
Tested by
no test coverage detected