pub struct StackError {
pub fn_name: String,
pub pc: usize,
pub depth_a: i32,
pub depth_b: i32,
}Fields§
§fn_name: String§pc: usize§depth_a: i32§depth_b: i32Trait Implementations§
Source§impl Clone for StackError
impl Clone for StackError
Source§fn clone(&self) -> StackError
fn clone(&self) -> StackError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StackError
impl Debug for StackError
Source§impl Display for StackError
impl Display for StackError
Source§impl PartialEq for StackError
impl PartialEq for StackError
Source§fn eq(&self, other: &StackError) -> bool
fn eq(&self, other: &StackError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackError
Auto Trait Implementations§
impl Freeze for StackError
impl RefUnwindSafe for StackError
impl Send for StackError
impl Sync for StackError
impl Unpin for StackError
impl UnsafeUnpin 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