ImplV8StackFrame

Trait ImplV8StackFrame 

Source
pub trait ImplV8StackFrame:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn is_valid(&self) -> c_int;
    fn script_name(&self) -> CefStringUserfree;
    fn script_name_or_source_url(&self) -> CefStringUserfree;
    fn function_name(&self) -> CefStringUserfree;
    fn line_number(&self) -> c_int;
    fn column(&self) -> c_int;
    fn is_eval(&self) -> c_int;
    fn is_constructor(&self) -> c_int;
    fn get_raw(&self) -> *mut _cef_v8_stack_frame_t;
}

Required Methods§

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§