pub struct V8Exception(/* private fields */);Expand description
See _cef_v8_exception_t for more documentation.
Trait Implementations§
Source§impl Clone for V8Exception
impl Clone for V8Exception
Source§fn clone(&self) -> V8Exception
fn clone(&self) -> V8Exception
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConvertParam<*mut _cef_v8_exception_t> for &V8Exception
impl ConvertParam<*mut _cef_v8_exception_t> for &V8Exception
fn into_raw(self) -> *mut _cef_v8_exception_t
Source§impl ConvertParam<*mut _cef_v8_exception_t> for &mut V8Exception
impl ConvertParam<*mut _cef_v8_exception_t> for &mut V8Exception
fn into_raw(self) -> *mut _cef_v8_exception_t
Source§impl ConvertReturnValue<V8Exception> for *mut _cef_v8_exception_t
impl ConvertReturnValue<V8Exception> for *mut _cef_v8_exception_t
fn wrap_result(self) -> V8Exception
Source§impl From<V8Exception> for *mut _cef_v8_exception_t
impl From<V8Exception> for *mut _cef_v8_exception_t
Source§fn from(value: V8Exception) -> Self
fn from(value: V8Exception) -> Self
Converts to this type from the input type.
Source§impl ImplV8Exception for V8Exception
impl ImplV8Exception for V8Exception
Source§fn message(&self) -> CefStringUserfree
fn message(&self) -> CefStringUserfree
See
_cef_v8_exception_t::get_message for more documentation.Source§fn source_line(&self) -> CefStringUserfree
fn source_line(&self) -> CefStringUserfree
See
_cef_v8_exception_t::get_source_line for more documentation.Source§fn script_resource_name(&self) -> CefStringUserfree
fn script_resource_name(&self) -> CefStringUserfree
See
_cef_v8_exception_t::get_script_resource_name for more documentation.Source§fn line_number(&self) -> c_int
fn line_number(&self) -> c_int
See
_cef_v8_exception_t::get_line_number for more documentation.Source§fn start_position(&self) -> c_int
fn start_position(&self) -> c_int
See
_cef_v8_exception_t::get_start_position for more documentation.Source§fn end_position(&self) -> c_int
fn end_position(&self) -> c_int
See
_cef_v8_exception_t::get_end_position for more documentation.Source§fn start_column(&self) -> c_int
fn start_column(&self) -> c_int
See
_cef_v8_exception_t::get_start_column for more documentation.Source§fn end_column(&self) -> c_int
fn end_column(&self) -> c_int
See
_cef_v8_exception_t::get_end_column for more documentation.fn get_raw(&self) -> *mut _cef_v8_exception_t
Source§impl Rc for V8Exception
impl Rc for V8Exception
Source§fn as_base(&self) -> &_cef_base_ref_counted_t
fn as_base(&self) -> &_cef_base_ref_counted_t
Get the reference of cef_base_ref_counted_t.
Source§unsafe fn release(&self) -> bool
unsafe fn release(&self) -> bool
Decrease reference count by 1 and release the value if the count meets 0.
Reuturn
True if it is released. Read moreSource§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True if the reference count is exactly 1.Source§fn has_at_least_one_ref(&self) -> bool
fn has_at_least_one_ref(&self) -> bool
True if the reference count is larger than 0.Auto Trait Implementations§
impl Freeze for V8Exception
impl RefUnwindSafe for V8Exception
impl Send for V8Exception
impl Sync for V8Exception
impl Unpin for V8Exception
impl UnwindSafe for V8Exception
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