☰
Type Definition SewUpVec
Trait Implementations
VecLike<V>
Other items in
sewup
::
kv
Modules
traits
Structs
Bucket
Iter
Store
Enums
Feature
Type Definitions
RawBucket
SewUpVec
ayu
dark
light
All crates
ahash
aho_corasick
ansi_term
anyhow
atty
bech32
bincode
bit_set
bit_vec
bitcoin
bitcoin_hashes
bitflags
cfg_if
clap
convert_case
core2
crunchy
cryptoxide
enum_primitive
fancy_regex
hashbrown
hex
hex_literal
itoa
libc
libloading
memchr
num
num_bigint
num_complex
num_integer
num_iter
num_rational
num_traits
ordered_float
paste
proc_macro2
proc_macro_error
proc_macro_error_attr
qimalloc
quote
regex
regex_syntax
remain
rust_ssvm
ryu
secp256k1
secp256k1_sys
serde
serde_derive
serde_json
serde_value
sewup
sewup_derive
ss_ewasm_api
ssvm_evmc_client
ssvm_evmc_sys
strsim
syn
textwrap
thiserror
thiserror_impl
tiny_keccak
toml
unicode_width
unicode_xid
vec_map
?
Type Definition
sewup
::
kv
::
SewUpVec
[
−
]
[src]
pub type SewUpVec<T> =
Bucket
<
usize
, T>;
Trait Implementations
[src]
impl<V:
Clone
+
Value
+
PartialEq
>
VecLike
<V> for
SewUpVec
<V>
[src]
fn
to_vec
(&self) ->
Vec
<V>
[src]
fn
append
(&mut self, other: &mut
Vec
<V>)
[src]
fn
push
(&mut self, value: V)
[src]
fn
pop
(&mut self) ->
Option
<V>
[src]
fn
clear
(&mut self)
[src]
fn
resize_with
<F>(&mut self, new_len:
usize
, f: F)
where
F:
FnMut
() -> V,
[src]
fn
resize
(&mut self, new_len:
usize
, value: V)
[src]
fn
extend_from_slice
(&mut self, other:
&[V]
)
[src]
fn
dedup
(&mut self)
[src]
fn
swap
(&mut self, a:
usize
, b:
usize
)
[src]
fn
reverse
(&mut self)
[src]
fn
contains
(&self, x:
&
V) ->
bool
[src]
fn
starts_with
(&self, needle:
&[V]
) ->
bool
[src]
fn
ends_with
(&self, needle:
&[V]
) ->
bool
[src]
fn
rotate_left
(&mut self, mid:
usize
)
[src]
fn
rotate_right
(&mut self, k:
usize
)
[src]
fn
fill_with
<F>(&mut self, f: F)
where
F:
FnMut
() -> V,
[src]
fn
copy_from_slice
(&mut self, src:
&[V]
)
where
V:
Copy
,
[src]
fn
sort
(&mut self)
where
V:
Ord
,
[src]
fn
truncate
(&mut self, len:
usize
)