pub struct AgentMuxApp {
state: Arc<AppState>,
ipc_port: u16,
cef_object: *mut RcImpl<_cef_app_t, Self>,
}Fields§
§state: Arc<AppState>§ipc_port: u16§cef_object: *mut RcImpl<_cef_app_t, Self>Implementations§
Trait Implementations§
Source§impl Clone for AgentMuxApp
impl Clone for AgentMuxApp
Source§impl ImplApp for AgentMuxApp
impl ImplApp for AgentMuxApp
Source§fn on_before_command_line_processing(
&self,
_process_type: Option<&CefString>,
command_line: Option<&mut CommandLine>,
)
fn on_before_command_line_processing( &self, _process_type: Option<&CefString>, command_line: Option<&mut CommandLine>, )
See [
_cef_app_t::on_before_command_line_processing] for more documentation.Source§fn browser_process_handler(&self) -> Option<BrowserProcessHandler>
fn browser_process_handler(&self) -> Option<BrowserProcessHandler>
See [
_cef_app_t::get_browser_process_handler] for more documentation.fn get_raw(&self) -> *mut _cef_app_t
§fn on_register_custom_schemes(&self, registrar: Option<&mut SchemeRegistrar>)
fn on_register_custom_schemes(&self, registrar: Option<&mut SchemeRegistrar>)
See [
_cef_app_t::on_register_custom_schemes] for more documentation.§fn resource_bundle_handler(&self) -> Option<ResourceBundleHandler>
fn resource_bundle_handler(&self) -> Option<ResourceBundleHandler>
See [
_cef_app_t::get_resource_bundle_handler] for more documentation.§fn render_process_handler(&self) -> Option<RenderProcessHandler>
fn render_process_handler(&self) -> Option<RenderProcessHandler>
See [
_cef_app_t::get_render_process_handler] for more documentation.fn init_methods(object: &mut _cef_app_t)
Source§impl Rc for AgentMuxApp
impl Rc for AgentMuxApp
§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 more§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True if the reference count is exactly 1.§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 AgentMuxApp
impl !RefUnwindSafe for AgentMuxApp
impl !Send for AgentMuxApp
impl !Sync for AgentMuxApp
impl Unpin for AgentMuxApp
impl !UnwindSafe for AgentMuxApp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, U> ConvertReturnValue<U> for Twhere
T: Into<U>,
impl<T, U> ConvertReturnValue<U> for Twhere
T: Into<U>,
fn wrap_result(self) -> U
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.