Home
last modified time | relevance | path

Searched refs:TryReserveError (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/hashbrown/src/raw/
Dmod.rs3 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/
Dlib.rs119 pub enum TryReserveError { enum
Dset.rs1 use crate::TryReserveError;
576 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument
Dmap.rs2 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/
DCHANGELOG.md3 hashbrown::TryReserveError type.
/external/rust/crates/hashlink/src/
Dlinked_hash_set.rs11 use crate::linked_hash_map::{self, LinkedHashMap, TryReserveError};
107 pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> { in try_reserve() argument
Dlinked_hash_map.rs15 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/
DCHANGELOG.md117 - `CollectionAllocErr` renamed to `TryReserveError`.