pub struct V8StackFrame(/* private fields */);Expand description
See _cef_v8_stack_frame_t for more documentation.
Trait Implementations§
Source§impl Clone for V8StackFrame
impl Clone for V8StackFrame
Source§fn clone(&self) -> V8StackFrame
fn clone(&self) -> V8StackFrame
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_stack_frame_t> for &V8StackFrame
impl ConvertParam<*mut _cef_v8_stack_frame_t> for &V8StackFrame
fn into_raw(self) -> *mut _cef_v8_stack_frame_t
Source§impl ConvertParam<*mut _cef_v8_stack_frame_t> for &mut V8StackFrame
impl ConvertParam<*mut _cef_v8_stack_frame_t> for &mut V8StackFrame
fn into_raw(self) -> *mut _cef_v8_stack_frame_t
Source§impl ConvertReturnValue<V8StackFrame> for *mut _cef_v8_stack_frame_t
impl ConvertReturnValue<V8StackFrame> for *mut _cef_v8_stack_frame_t
fn wrap_result(self) -> V8StackFrame
Source§impl From<V8StackFrame> for *mut _cef_v8_stack_frame_t
impl From<V8StackFrame> for *mut _cef_v8_stack_frame_t
Source§fn from(value: V8StackFrame) -> Self
fn from(value: V8StackFrame) -> Self
Converts to this type from the input type.
Source§impl ImplV8StackFrame for V8StackFrame
impl ImplV8StackFrame for V8StackFrame
Source§fn is_valid(&self) -> c_int
fn is_valid(&self) -> c_int
See
_cef_v8_stack_frame_t::is_valid for more documentation.Source§fn script_name(&self) -> CefStringUserfree
fn script_name(&self) -> CefStringUserfree
See
_cef_v8_stack_frame_t::get_script_name for more documentation.Source§fn script_name_or_source_url(&self) -> CefStringUserfree
fn script_name_or_source_url(&self) -> CefStringUserfree
See
_cef_v8_stack_frame_t::get_script_name_or_source_url for more documentation.Source§fn function_name(&self) -> CefStringUserfree
fn function_name(&self) -> CefStringUserfree
See
_cef_v8_stack_frame_t::get_function_name for more documentation.Source§fn line_number(&self) -> c_int
fn line_number(&self) -> c_int
See
_cef_v8_stack_frame_t::get_line_number for more documentation.Source§fn column(&self) -> c_int
fn column(&self) -> c_int
See
_cef_v8_stack_frame_t::get_column for more documentation.Source§fn is_eval(&self) -> c_int
fn is_eval(&self) -> c_int
See
_cef_v8_stack_frame_t::is_eval for more documentation.Source§fn is_constructor(&self) -> c_int
fn is_constructor(&self) -> c_int
See
_cef_v8_stack_frame_t::is_constructor for more documentation.fn get_raw(&self) -> *mut _cef_v8_stack_frame_t
Source§impl Rc for V8StackFrame
impl Rc for V8StackFrame
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 V8StackFrame
impl RefUnwindSafe for V8StackFrame
impl Send for V8StackFrame
impl Sync for V8StackFrame
impl Unpin for V8StackFrame
impl UnwindSafe for V8StackFrame
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