Struct stacks_rpc_client::clarity::vm::CallStack
pub struct CallStack { /* private fields */ }
Implementations§
§impl CallStack
impl CallStack
pub fn new() -> CallStack
pub fn depth(&self) -> usize
pub fn contains(&self, function: &FunctionIdentifier) -> bool
pub fn insert(&mut self, function: &FunctionIdentifier, track: bool)
pub fn incr_apply_depth(&mut self)
pub fn decr_apply_depth(&mut self)
pub fn remove( &mut self, function: &FunctionIdentifier, tracked: bool ) -> Result<(), Error>
pub fn make_stack_trace(&self) -> Vec<FunctionIdentifier>
Auto Trait Implementations§
impl RefUnwindSafe for CallStack
impl Send for CallStack
impl Sync for CallStack
impl Unpin for CallStack
impl UnwindSafe for CallStack
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