ImplV8Exception

Trait ImplV8Exception 

Source
pub trait ImplV8Exception:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn message(&self) -> CefStringUserfree;
    fn source_line(&self) -> CefStringUserfree;
    fn script_resource_name(&self) -> CefStringUserfree;
    fn line_number(&self) -> c_int;
    fn start_position(&self) -> c_int;
    fn end_position(&self) -> c_int;
    fn start_column(&self) -> c_int;
    fn end_column(&self) -> c_int;
    fn get_raw(&self) -> *mut _cef_v8_exception_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§