pub struct StackLimitExceeded(/* private fields */);Expand description
Error returned when a bounded operation would materialise too many stacks.
The error is intentionally opaque: the caller already supplied the limit.
Trait Implementations§
Source§impl Clone for StackLimitExceeded
impl Clone for StackLimitExceeded
Source§fn clone(&self) -> StackLimitExceeded
fn clone(&self) -> StackLimitExceeded
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 moreimpl Copy for StackLimitExceeded
Source§impl Debug for StackLimitExceeded
impl Debug for StackLimitExceeded
Source§impl Display for StackLimitExceeded
impl Display for StackLimitExceeded
impl Eq for StackLimitExceeded
Source§impl Error for StackLimitExceeded
impl Error for StackLimitExceeded
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 PartialEq for StackLimitExceeded
impl PartialEq for StackLimitExceeded
impl StructuralPartialEq for StackLimitExceeded
Auto Trait Implementations§
impl Freeze for StackLimitExceeded
impl RefUnwindSafe for StackLimitExceeded
impl Send for StackLimitExceeded
impl Sync for StackLimitExceeded
impl Unpin for StackLimitExceeded
impl UnsafeUnpin for StackLimitExceeded
impl UnwindSafe for StackLimitExceeded
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