Home
last modified time | relevance | path

Searched refs:TryReserveErrorKind (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/rust/alloc/collections/
Dmod.rs64 kind: TryReserveErrorKind,
76 pub fn kind(&self) -> TryReserveErrorKind { in kind() argument
88 pub enum TryReserveErrorKind { enum
116 impl From<TryReserveErrorKind> for TryReserveError {
118 fn from(kind: TryReserveErrorKind) -> Self { in from()
124 impl From<LayoutError> for TryReserveErrorKind { implementation
128 TryReserveErrorKind::CapacityOverflow in from()
140 TryReserveErrorKind::CapacityOverflow => { in fmt()
143 TryReserveErrorKind::AllocError { .. } => { in fmt()
/Linux-v6.1/rust/alloc/
Draw_vec.rs18 use crate::collections::TryReserveErrorKind::*;