pub trait TursoTryWithCapacityExt: Sized {
// Required method
fn try_with_capacity_ext(capacity: usize) -> Result<Self, TryReserveError>;
}Required Methods§
fn try_with_capacity_ext(capacity: usize) -> Result<Self, TryReserveError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<K, V> TursoTryWithCapacityExt for HashMap<K, V>
impl<T: Ord> TursoTryWithCapacityExt for BinaryHeap<T>
impl<T> TursoTryWithCapacityExt for HashSet<T>
impl<T> TursoTryWithCapacityExt for Vec<T>
Available on non-
nightly only.