blob: e0c3d0561fdaa32eb9eda8899fd7cae359b5f08a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//! Smart pointer alias errors.
/// Error type for [`SomePtr`].
///
/// [`SomePtr`]: crate::ptr::SomePtr
#[derive(thiserror::Error, Debug)]
pub enum SomePtrError
{
/// Tried to get as a wrong smart pointer type.
#[error("Wrong smart pointer type. Expected {expected}, found {found}")]
WrongPtrType
{
/// The expected smart pointer type.
expected: &'static str,
/// The found smart pointer type.
found: &'static str,
},
}
|