pub struct SchemeRegistrar(/* private fields */);Expand description
See _cef_scheme_registrar_t for more documentation.
Trait Implementations§
Source§impl Clone for SchemeRegistrar
impl Clone for SchemeRegistrar
Source§fn clone(&self) -> SchemeRegistrar
fn clone(&self) -> SchemeRegistrar
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_scheme_registrar_t> for &SchemeRegistrar
impl ConvertParam<*mut _cef_scheme_registrar_t> for &SchemeRegistrar
fn into_raw(self) -> *mut _cef_scheme_registrar_t
Source§impl ConvertParam<*mut _cef_scheme_registrar_t> for &mut SchemeRegistrar
impl ConvertParam<*mut _cef_scheme_registrar_t> for &mut SchemeRegistrar
fn into_raw(self) -> *mut _cef_scheme_registrar_t
Source§impl ConvertReturnValue<SchemeRegistrar> for *mut _cef_scheme_registrar_t
impl ConvertReturnValue<SchemeRegistrar> for *mut _cef_scheme_registrar_t
fn wrap_result(self) -> SchemeRegistrar
Source§impl From<SchemeRegistrar> for *mut _cef_scheme_registrar_t
impl From<SchemeRegistrar> for *mut _cef_scheme_registrar_t
Source§fn from(value: SchemeRegistrar) -> Self
fn from(value: SchemeRegistrar) -> Self
Converts to this type from the input type.
Source§impl ImplSchemeRegistrar for SchemeRegistrar
impl ImplSchemeRegistrar for SchemeRegistrar
Source§fn add_custom_scheme(
&self,
scheme_name: Option<&CefString>,
options: c_int,
) -> c_int
fn add_custom_scheme( &self, scheme_name: Option<&CefString>, options: c_int, ) -> c_int
See
_cef_scheme_registrar_t::add_custom_scheme for more documentation.fn get_raw(&self) -> *mut _cef_scheme_registrar_t
fn init_methods(object: &mut _cef_scheme_registrar_t)
impl Copy for SchemeRegistrar
Auto Trait Implementations§
impl Freeze for SchemeRegistrar
impl RefUnwindSafe for SchemeRegistrar
impl !Send for SchemeRegistrar
impl !Sync for SchemeRegistrar
impl Unpin for SchemeRegistrar
impl UnwindSafe for SchemeRegistrar
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