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§
Sourcefn is_valid(&self) -> c_int
fn is_valid(&self) -> c_int
See _cef_v8_stack_trace_t::is_valid
for more documentation.
Sourcefn frame_count(&self) -> c_int
fn frame_count(&self) -> c_int
See _cef_v8_stack_trace_t::get_frame_count
for more documentation.
Sourcefn frame(&self, index: c_int) -> Option<V8StackFrame>
fn frame(&self, index: c_int) -> Option<V8StackFrame>
See _cef_v8_stack_trace_t::get_frame
for more documentation.
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.