Trait ImplV8StackTrace

Source
pub trait ImplV8StackTrace:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn is_valid(&self) -> c_int;
    fn frame_count(&self) -> c_int;
    fn frame(&self, index: c_int) -> Option<V8StackFrame>;
    fn get_raw(&self) -> *mut _cef_v8_stack_trace_t;
}

Required Methods§

Source

fn is_valid(&self) -> c_int

See _cef_v8_stack_trace_t::is_valid for more documentation.

Source

fn frame_count(&self) -> c_int

See _cef_v8_stack_trace_t::get_frame_count for more documentation.

Source

fn frame(&self, index: c_int) -> Option<V8StackFrame>

See _cef_v8_stack_trace_t::get_frame for more documentation.

Source

fn get_raw(&self) -> *mut _cef_v8_stack_trace_t

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§