rune_alloc/
error.rs
1use core::alloc::LayoutError;
4use core::convert::Infallible;
5use core::fmt;
6
7use crate::alloc::AllocError;
8
9#[derive(Debug)]
11pub enum CustomError<E> {
12 Custom(E),
14 Error(Error),
16}
17
18impl<E> From<Error> for CustomError<E> {
19 fn from(error: Error) -> Self {
20 CustomError::Error(error)
21 }
22}
23
24impl<E> From<AllocError> for CustomError<E> {
25 fn from(error: AllocError) -> Self {
26 CustomError::Error(Error::from(error))
27 }
28}
29
30#[derive(Debug, Clone, Copy, PartialEq, Eq)]
32#[non_exhaustive]
33pub enum Error {
34 #[doc(hidden)]
37 CapacityOverflow,
38
39 #[doc(hidden)]
41 LayoutError,
42
43 #[doc(hidden)]
45 FormatError,
46
47 #[doc(hidden)]
49 AllocError {
50 error: AllocError,
52 },
53}
54
55impl From<AllocError> for Error {
56 #[inline]
57 fn from(error: AllocError) -> Self {
58 Error::AllocError { error }
59 }
60}
61
62impl From<Infallible> for Error {
63 #[inline(always)]
64 fn from(value: Infallible) -> Self {
65 match value {}
66 }
67}
68
69impl From<LayoutError> for Error {
70 #[inline]
71 fn from(_: LayoutError) -> Self {
72 Error::LayoutError
73 }
74}
75
76impl fmt::Display for Error {
77 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
78 match self {
79 Error::CapacityOverflow => write!(f, "Capacity overflow"),
80 Error::LayoutError => write!(f, "Layout error"),
81 Error::FormatError => write!(f, "Format error"),
82 Error::AllocError { error } => error.fmt(f),
83 }
84 }
85}
86
87impl core::error::Error for Error {}