Searched refs:TryReserveError (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/hashbrown/src/raw/ |
D | mod.rs | 3 use crate::TryReserveError; 96 fn capacity_overflow(self) -> TryReserveError { in capacity_overflow() argument 98 Fallibility::Fallible => TryReserveError::CapacityOverflow, in capacity_overflow() 105 fn alloc_err(self, layout: Layout) -> TryReserveError { in alloc_err() argument 107 Fallibility::Fallible => TryReserveError::AllocError { layout }, in alloc_err() 412 pub fn try_with_capacity(capacity: usize) -> Result<Self, TryReserveError> { in try_with_capacity() argument 446 ) -> Result<Self, TryReserveError> { in new_uninitialized() argument 466 ) -> Result<Self, TryReserveError> { in fallible_with_capacity() argument 481 pub fn try_with_capacity_in(capacity: usize, alloc: A) -> Result<Self, TryReserveError> { in try_with_capacity_in() argument 662 ) -> Result<(), TryReserveError> { in try_reserve() argument [all …]
|
/external/rust/crates/hashbrown/src/ |
D | lib.rs | 119 pub enum TryReserveError { enum
|
D | set.rs | 1 use crate::TryReserveError; 576 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument
|
D | map.rs | 2 use crate::TryReserveError; 824 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument 3504 use crate::TryReserveError::*;
|
/external/rust/crates/hashlink/ |
D | CHANGELOG.md | 3 hashbrown::TryReserveError type.
|
/external/rust/crates/hashlink/src/ |
D | linked_hash_set.rs | 11 use crate::linked_hash_map::{self, LinkedHashMap, TryReserveError}; 107 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument
|
D | linked_hash_map.rs | 15 pub type TryReserveError = hashbrown::TryReserveError; typedef 95 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument
|
/external/rust/crates/hashbrown/ |
D | CHANGELOG.md | 117 - `CollectionAllocErr` renamed to `TryReserveError`.
|