#[repr(C)]pub struct aeron_async_executor_task_stct {
pub executor: *mut aeron_async_executor_t,
pub on_execute: aeron_async_executor_task_on_execute_func_t,
pub on_complete: aeron_async_executor_task_on_complete_func_t,
pub on_cancel: aeron_async_executor_task_on_cancel_func_t,
pub clientd: *mut c_void,
pub result: c_int,
pub errcode: c_int,
pub errmsg: [c_char; 8192],
}Fields§
§executor: *mut aeron_async_executor_t§on_execute: aeron_async_executor_task_on_execute_func_t§on_complete: aeron_async_executor_task_on_complete_func_t§on_cancel: aeron_async_executor_task_on_cancel_func_t§clientd: *mut c_void§result: c_int§errcode: c_int§errmsg: [c_char; 8192]Trait Implementations§
Source§impl Clone for aeron_async_executor_task_stct
impl Clone for aeron_async_executor_task_stct
Source§fn clone(&self) -> aeron_async_executor_task_stct
fn clone(&self) -> aeron_async_executor_task_stct
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 From<aeron_async_executor_task_stct> for AeronAsyncExecutorTask
impl From<aeron_async_executor_task_stct> for AeronAsyncExecutorTask
Source§fn from(value: aeron_async_executor_task_t) -> Self
fn from(value: aeron_async_executor_task_t) -> Self
Converts to this type from the input type.
Source§impl PartialEq for aeron_async_executor_task_stct
impl PartialEq for aeron_async_executor_task_stct
Source§fn eq(&self, other: &aeron_async_executor_task_stct) -> bool
fn eq(&self, other: &aeron_async_executor_task_stct) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for aeron_async_executor_task_stct
impl Eq for aeron_async_executor_task_stct
impl StructuralPartialEq for aeron_async_executor_task_stct
Auto Trait Implementations§
impl Freeze for aeron_async_executor_task_stct
impl RefUnwindSafe for aeron_async_executor_task_stct
impl !Send for aeron_async_executor_task_stct
impl !Sync for aeron_async_executor_task_stct
impl Unpin for aeron_async_executor_task_stct
impl UnsafeUnpin for aeron_async_executor_task_stct
impl UnwindSafe for aeron_async_executor_task_stct
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