#[non_exhaustive]pub struct StackError { /* private fields */ }
Expand description
An error raised when accessing an address on the stack.
Trait Implementations§
Source§impl Debug for StackError
impl Debug for StackError
Source§impl Display for StackError
impl Display for StackError
Source§impl Error for StackError
impl Error for StackError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Infallible> for StackError
impl From<Infallible> for StackError
Source§fn from(value: Infallible) -> Self
fn from(value: Infallible) -> Self
Converts to this type from the input type.
Source§impl From<StackError> for RuntimeError
impl From<StackError> for RuntimeError
Source§fn from(error: StackError) -> Self
fn from(error: StackError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StackError
impl RefUnwindSafe for StackError
impl Send for StackError
impl Sync for StackError
impl Unpin for StackError
impl UnwindSafe for StackError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more