#[repr(C)]pub struct RcImpl<T, I> {
pub cef_object: T,
pub interface: I,
/* private fields */
}Expand description
There are some types require users to implement one their own in Rust and then create a raw type around it to pass to sys level api. This is the wrapper type for it.
Fields§
§cef_object: TRaw cef types
interface: IRust interface of such type
Implementations§
Auto Trait Implementations§
impl<T, I> !Freeze for RcImpl<T, I>
impl<T, I> RefUnwindSafe for RcImpl<T, I>where
T: RefUnwindSafe,
I: RefUnwindSafe,
impl<T, I> Send for RcImpl<T, I>
impl<T, I> Sync for RcImpl<T, I>
impl<T, I> Unpin for RcImpl<T, I>
impl<T, I> UnwindSafe for RcImpl<T, I>where
T: UnwindSafe,
I: UnwindSafe,
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