Struct ic_stable_memory::collections::btree_set::SBTreeSet
source · [−]pub struct SBTreeSet<T> { /* private fields */ }Implementations
sourceimpl<'a, T: Readable<'a, LittleEndian> + Writable<LittleEndian> + Ord> SBTreeSet<T>
impl<'a, T: Readable<'a, LittleEndian> + Writable<LittleEndian> + Ord> SBTreeSet<T>
pub fn new() -> Self
pub fn new_with_degree(degree: usize) -> Self
pub fn insert(&mut self, value: T) -> bool
pub fn remove(&mut self, value: &T) -> bool
pub fn contains(&self, value: &T) -> bool
pub fn len(&self) -> u64
pub fn is_empty(&self) -> bool
pub fn drop(self)
Trait Implementations
sourceimpl<'a, T: Readable<'a, LittleEndian> + Writable<LittleEndian> + Ord> Default for SBTreeSet<T>
impl<'a, T: Readable<'a, LittleEndian> + Writable<LittleEndian> + Ord> Default for SBTreeSet<T>
sourceimpl<'a_, T, C_: Context> Readable<'a_, C_> for SBTreeSet<T>where
SBTreeMap<T, ()>: Readable<'a_, C_>,
impl<'a_, T, C_: Context> Readable<'a_, C_> for SBTreeSet<T>where
SBTreeMap<T, ()>: 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<T, C_: Context> Writable<C_> for SBTreeSet<T>where
SBTreeMap<T, ()>: Writable<C_>,
impl<T, C_: Context> Writable<C_> for SBTreeSet<T>where
SBTreeMap<T, ()>: 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<T> !RefUnwindSafe for SBTreeSet<T>
impl<T> Send for SBTreeSet<T>where
T: Send,
impl<T> !Sync for SBTreeSet<T>
impl<T> Unpin for SBTreeSet<T>where
T: Unpin,
impl<T> UnwindSafe for SBTreeSet<T>where
T: 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