pub struct CefStringVisitor(/* private fields */);
Expand description
See _cef_string_visitor_t
for more documentation.
Implementations§
Source§impl CefStringVisitor
impl CefStringVisitor
pub fn new<T>(interface: T) -> Selfwhere
T: WrapCefStringVisitor,
Trait Implementations§
Source§impl Clone for CefStringVisitor
impl Clone for CefStringVisitor
Source§fn clone(&self) -> CefStringVisitor
fn clone(&self) -> CefStringVisitor
Returns a copy 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_string_visitor_t> for &CefStringVisitor
impl ConvertParam<*mut _cef_string_visitor_t> for &CefStringVisitor
fn into_raw(self) -> *mut _cef_string_visitor_t
Source§impl ConvertParam<*mut _cef_string_visitor_t> for &mut CefStringVisitor
impl ConvertParam<*mut _cef_string_visitor_t> for &mut CefStringVisitor
fn into_raw(self) -> *mut _cef_string_visitor_t
Source§impl ConvertReturnValue<CefStringVisitor> for *mut _cef_string_visitor_t
impl ConvertReturnValue<CefStringVisitor> for *mut _cef_string_visitor_t
fn wrap_result(self) -> CefStringVisitor
Source§impl Default for CefStringVisitor
impl Default for CefStringVisitor
Source§impl From<CefStringVisitor> for *mut _cef_string_visitor_t
impl From<CefStringVisitor> for *mut _cef_string_visitor_t
Source§fn from(value: CefStringVisitor) -> Self
fn from(value: CefStringVisitor) -> Self
Converts to this type from the input type.
Source§impl ImplCefStringVisitor for CefStringVisitor
impl ImplCefStringVisitor for CefStringVisitor
Source§fn visit(&self, string: Option<&CefString>)
fn visit(&self, string: Option<&CefString>)
See
_cef_string_visitor_t::visit
for more documentation.fn get_raw(&self) -> *mut _cef_string_visitor_t
fn init_methods(object: &mut _cef_string_visitor_t)
Source§impl Rc for CefStringVisitor
impl Rc for CefStringVisitor
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 CefStringVisitor
impl RefUnwindSafe for CefStringVisitor
impl Send for CefStringVisitor
impl Sync for CefStringVisitor
impl Unpin for CefStringVisitor
impl UnwindSafe for CefStringVisitor
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