Lines Matching +full:max +full:- +full:reason
1 // SPDX-License-Identifier: Apache-2.0 OR MIT
19 //! An ordered map based on a B-Tree.
27 //! An ordered set based on a B-Tree.
73 reason = "Uncertain how much info should be exposed",
76 pub fn kind(&self) -> TryReserveErrorKind { in kind()
85 reason = "Uncertain how much info should be exposed",
90 /// (usually `isize::MAX` bytes).
102 reason = "\
105 https://github.com/rust-lang/wg-allocators/issues/23"
113 reason = "Uncertain how much info should be exposed",
118 fn from(kind: TryReserveErrorKind) -> Self { in from()
123 #[unstable(feature = "try_reserve_kind", reason = "new API", issue = "48043")]
127 fn from(_: LayoutError) -> Self { in from()
137 ) -> core::result::Result<(), core::fmt::Error> { in fmt()
139 let reason = match self.kind { in fmt() localVariable
147 fmt.write_str(reason) in fmt()