#[repr(C)]pub struct _cef_task_runner_t {
pub base: cef_base_ref_counted_t,
pub is_same: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, that: *mut _cef_task_runner_t) -> c_int>,
pub belongs_to_current_thread: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t) -> c_int>,
pub belongs_to_thread: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, threadId: cef_thread_id_t) -> c_int>,
pub post_task: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, task: *mut _cef_task_t) -> c_int>,
pub post_delayed_task: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, task: *mut _cef_task_t, delay_ms: int64) -> c_int>,
}Fields§
§base: cef_base_ref_counted_t§is_same: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, that: *mut _cef_task_runner_t) -> c_int>§belongs_to_current_thread: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t) -> c_int>§belongs_to_thread: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, threadId: cef_thread_id_t) -> c_int>§post_task: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, task: *mut _cef_task_t) -> c_int>§post_delayed_task: Option<unsafe extern "C" fn(self_: *mut _cef_task_runner_t, task: *mut _cef_task_t, delay_ms: int64) -> c_int>Trait Implementations§
Source§impl Clone for _cef_task_runner_t
impl Clone for _cef_task_runner_t
Source§fn clone(&self) -> _cef_task_runner_t
fn clone(&self) -> _cef_task_runner_t
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 Debug for _cef_task_runner_t
impl Debug for _cef_task_runner_t
impl Copy for _cef_task_runner_t
Auto Trait Implementations§
impl Freeze for _cef_task_runner_t
impl RefUnwindSafe for _cef_task_runner_t
impl Send for _cef_task_runner_t
impl Sync for _cef_task_runner_t
impl Unpin for _cef_task_runner_t
impl UnwindSafe for _cef_task_runner_t
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