Struct ic_stable_memory::collections::btree_map::SBTreeMap
source · [−]pub struct SBTreeMap<K, V> { /* private fields */ }Expand description
FIXME: OOMs work really bad - I can’t put my finger on that recursion
Implementations
sourceimpl<'a, K: Ord + Readable<'a, LittleEndian> + Writable<LittleEndian>, V: Readable<'a, LittleEndian> + Writable<LittleEndian>> SBTreeMap<K, V>
impl<'a, K: Ord + Readable<'a, LittleEndian> + Writable<LittleEndian>, V: Readable<'a, LittleEndian> + Writable<LittleEndian>> SBTreeMap<K, V>
pub fn new() -> Self
pub fn new_with_degree(degree: usize) -> Self
pub fn insert(&mut self, key: K, value: &V) -> Option<V>
pub fn remove(&mut self, key: &K) -> Option<V>
pub fn drop(self)
pub fn get(&self, key: &K) -> Option<V>
pub fn contains_key(&self, key: &K) -> bool
pub fn len(&self) -> u64
pub fn is_empty(&self) -> bool
Trait Implementations
sourceimpl<'a, K: Ord + Readable<'a, LittleEndian> + Writable<LittleEndian>, V: Readable<'a, LittleEndian> + Writable<LittleEndian>> Default for SBTreeMap<K, V>
impl<'a, K: Ord + Readable<'a, LittleEndian> + Writable<LittleEndian>, V: Readable<'a, LittleEndian> + Writable<LittleEndian>> Default for SBTreeMap<K, V>
sourceimpl<'a_, K, V, C_: Context> Readable<'a_, C_> for SBTreeMap<K, V>where
BTreeNode<K, V>: Readable<'a_, C_>,
impl<'a_, K, V, C_: Context> Readable<'a_, C_> for SBTreeMap<K, V>where
BTreeNode<K, V>: Readable<'a_, C_>,
fn read_from<R_: Reader<'a_, C_>>(_reader_: &mut R_) -> Result<Self, C_::Error>
fn minimum_bytes_needed() -> usize
fn read_from_buffer_with_ctx(
context: C,
buffer: &'a [u8]
) -> Result<Self, <C as Context>::Error>
fn read_with_length_from_buffer_with_ctx(
context: C,
buffer: &'a [u8]
) -> (Result<Self, <C as Context>::Error>, usize)
fn read_from_buffer_copying_data_with_ctx(
context: C,
buffer: &[u8]
) -> Result<Self, <C as Context>::Error>
fn read_with_length_from_buffer_copying_data_with_ctx(
context: C,
buffer: &[u8]
) -> (Result<Self, <C as Context>::Error>, usize)
fn read_with_length_from_buffer_copying_data_with_ctx_mut(
context: &mut C,
buffer: &[u8]
) -> (Result<Self, <C as Context>::Error>, usize)
fn read_from_stream_unbuffered_with_ctx<S>(
context: C,
stream: S
) -> Result<Self, <C as Context>::Error>where
S: Read,
fn read_from_stream_buffered_with_ctx<S>(
context: C,
stream: S
) -> Result<Self, <C as Context>::Error>where
S: Read,
fn read_from_file_with_ctx(
context: C,
path: impl AsRef<Path>
) -> Result<Self, <C as Context>::Error>
sourceimpl<K, V, C_: Context> Writable<C_> for SBTreeMap<K, V>where
BTreeNode<K, V>: Writable<C_>,
impl<K, V, C_: Context> Writable<C_> for SBTreeMap<K, V>where
BTreeNode<K, V>: Writable<C_>,
fn write_to<T_: ?Sized + Writer<C_>>(
&self,
_writer_: &mut T_
) -> Result<(), C_::Error>
fn write_to_buffer_with_ctx(
&self,
context: C,
buffer: &mut [u8]
) -> Result<(), <C as Context>::Error>
fn write_to_buffer_with_ctx_mut(
&self,
context: &mut C,
buffer: &mut [u8]
) -> Result<(), <C as Context>::Error>
fn write_to_vec_with_ctx(
&self,
context: C
) -> Result<Vec<u8, Global>, <C as Context>::Error>
fn write_to_vec_with_ctx_mut(
&self,
context: &mut C
) -> Result<Vec<u8, Global>, <C as Context>::Error>
fn write_to_stream_with_ctx<S>(
&self,
context: C,
stream: S
) -> Result<(), <C as Context>::Error>where
S: Write,
fn write_to_file_with_ctx(
&self,
context: C,
path: impl AsRef<Path>
) -> Result<(), <C as Context>::Error>
fn bytes_needed(&self) -> Result<usize, <C as Context>::Error>
Auto Trait Implementations
impl<K, V> !RefUnwindSafe for SBTreeMap<K, V>
impl<K, V> Send for SBTreeMap<K, V>where
K: Send,
V: Send,
impl<K, V> !Sync for SBTreeMap<K, V>
impl<K, V> Unpin for SBTreeMap<K, V>where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for SBTreeMap<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more