pub struct Frame(/* private fields */);Expand description
See _cef_frame_t for more documentation.
Trait Implementations§
Source§impl ConvertParam<*mut _cef_frame_t> for &Frame
impl ConvertParam<*mut _cef_frame_t> for &Frame
fn into_raw(self) -> *mut _cef_frame_t
Source§impl ConvertParam<*mut _cef_frame_t> for &mut Frame
impl ConvertParam<*mut _cef_frame_t> for &mut Frame
fn into_raw(self) -> *mut _cef_frame_t
Source§impl ConvertReturnValue<Frame> for *mut _cef_frame_t
impl ConvertReturnValue<Frame> for *mut _cef_frame_t
fn wrap_result(self) -> Frame
Source§impl ImplFrame for Frame
impl ImplFrame for Frame
Source§fn is_valid(&self) -> c_int
fn is_valid(&self) -> c_int
See
_cef_frame_t::is_valid for more documentation.Source§fn undo(&self)
fn undo(&self)
See
_cef_frame_t::undo for more documentation.Source§fn redo(&self)
fn redo(&self)
See
_cef_frame_t::redo for more documentation.Source§fn cut(&self)
fn cut(&self)
See
_cef_frame_t::cut for more documentation.Source§fn copy(&self)
fn copy(&self)
See
_cef_frame_t::copy for more documentation.Source§fn paste(&self)
fn paste(&self)
See
_cef_frame_t::paste for more documentation.Source§fn paste_and_match_style(&self)
fn paste_and_match_style(&self)
See
_cef_frame_t::paste_and_match_style for more documentation.Source§fn del(&self)
fn del(&self)
See
_cef_frame_t::del for more documentation.Source§fn select_all(&self)
fn select_all(&self)
See
_cef_frame_t::select_all for more documentation.Source§fn view_source(&self)
fn view_source(&self)
See
_cef_frame_t::view_source for more documentation.Source§fn source(&self, visitor: Option<&mut CefStringVisitor>)
fn source(&self, visitor: Option<&mut CefStringVisitor>)
See
_cef_frame_t::get_source for more documentation.Source§fn text(&self, visitor: Option<&mut CefStringVisitor>)
fn text(&self, visitor: Option<&mut CefStringVisitor>)
See
_cef_frame_t::get_text for more documentation.Source§fn load_request(&self, request: Option<&mut Request>)
fn load_request(&self, request: Option<&mut Request>)
See
_cef_frame_t::load_request for more documentation.Source§fn load_url(&self, url: Option<&CefString>)
fn load_url(&self, url: Option<&CefString>)
See
_cef_frame_t::load_url for more documentation.Source§fn execute_java_script(
&self,
code: Option<&CefString>,
script_url: Option<&CefString>,
start_line: c_int,
)
fn execute_java_script( &self, code: Option<&CefString>, script_url: Option<&CefString>, start_line: c_int, )
See
_cef_frame_t::execute_java_script for more documentation.Source§fn is_main(&self) -> c_int
fn is_main(&self) -> c_int
See
_cef_frame_t::is_main for more documentation.Source§fn is_focused(&self) -> c_int
fn is_focused(&self) -> c_int
See
_cef_frame_t::is_focused for more documentation.Source§fn name(&self) -> CefStringUserfree
fn name(&self) -> CefStringUserfree
See
_cef_frame_t::get_name for more documentation.Source§fn identifier(&self) -> CefStringUserfree
fn identifier(&self) -> CefStringUserfree
See
_cef_frame_t::get_identifier for more documentation.Source§fn url(&self) -> CefStringUserfree
fn url(&self) -> CefStringUserfree
See
_cef_frame_t::get_url for more documentation.Source§fn v8_context(&self) -> Option<V8Context>
fn v8_context(&self) -> Option<V8Context>
See
_cef_frame_t::get_v8_context for more documentation.Source§fn visit_dom(&self, visitor: Option<&mut Domvisitor>)
fn visit_dom(&self, visitor: Option<&mut Domvisitor>)
See
_cef_frame_t::visit_dom for more documentation.Source§fn create_urlrequest(
&self,
request: Option<&mut Request>,
client: Option<&mut UrlrequestClient>,
) -> Option<Urlrequest>
fn create_urlrequest( &self, request: Option<&mut Request>, client: Option<&mut UrlrequestClient>, ) -> Option<Urlrequest>
See
_cef_frame_t::create_urlrequest for more documentation.Source§fn send_process_message(
&self,
target_process: ProcessId,
message: Option<&mut ProcessMessage>,
)
fn send_process_message( &self, target_process: ProcessId, message: Option<&mut ProcessMessage>, )
See
_cef_frame_t::send_process_message for more documentation.fn get_raw(&self) -> *mut _cef_frame_t
Source§impl Rc for Frame
impl Rc for Frame
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 Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
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