pub enum SystemBreakCode {
OutOfGas = 0,
StackLimitExceeded = 1,
}
Expand description
System break code for SyscallName::SystemBreak
syscall.
Variants§
Trait Implementations§
Source§impl Clone for SystemBreakCode
impl Clone for SystemBreakCode
Source§fn clone(&self) -> SystemBreakCode
fn clone(&self) -> SystemBreakCode
Returns a copy of the value. Read more
1.0.0 · 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 SystemBreakCode
impl Debug for SystemBreakCode
Source§impl TryFrom<i32> for SystemBreakCode
impl TryFrom<i32> for SystemBreakCode
Source§impl TryFrom<u32> for SystemBreakCode
impl TryFrom<u32> for SystemBreakCode
impl Copy for SystemBreakCode
Auto Trait Implementations§
impl Freeze for SystemBreakCode
impl RefUnwindSafe for SystemBreakCode
impl Send for SystemBreakCode
impl Sync for SystemBreakCode
impl Unpin for SystemBreakCode
impl UnwindSafe for SystemBreakCode
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