Files
alloc
collections
prelude
core
char
fmt
future
hash
iter
adapters
traits
num
dec2flt
flt2dec
ops
prelude
slice
stdsimd
crates
core_arch
src
aarch64
acle
arm
mips
nvptx
powerpc
powerpc64
wasm32
x86
x86_64
str
sync
task
unicode
proc_macro
std
collections
ffi
io
net
os
prelude
stdsimd
sync
sys
unix
backtrace
ext
process
windows
sys_common
thread
test
>
1 2 3 4 5 6 7 8 9 10 11 12 13
mod node; mod search; pub mod map; pub mod set; #[doc(hidden)] trait Recover<Q: ?Sized> { type Key; fn get(&self, key: &Q) -> Option<&Self::Key>; fn take(&mut self, key: &Q) -> Option<Self::Key>; fn replace(&mut self, key: Self::Key) -> Option<Self::Key>; }