#[repr(C)]pub struct aws_event_loop {
pub vtable: *mut aws_event_loop_vtable,
pub alloc: *mut aws_allocator,
pub clock: aws_io_clock_fn,
pub local_data: aws_hash_table,
pub current_load_factor: aws_atomic_var,
pub latest_tick_start: u64,
pub current_tick_latency_sum: usize,
pub next_flush_time: aws_atomic_var,
pub impl_data: *mut c_void,
}
Fields
vtable: *mut aws_event_loop_vtable
alloc: *mut aws_allocator
clock: aws_io_clock_fn
local_data: aws_hash_table
current_load_factor: aws_atomic_var
latest_tick_start: u64
current_tick_latency_sum: usize
next_flush_time: aws_atomic_var
impl_data: *mut c_void
Trait Implementations
sourceimpl Clone for aws_event_loop
impl Clone for aws_event_loop
sourcefn clone(&self) -> aws_event_loop
fn clone(&self) -> aws_event_loop
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_event_loop
impl Debug for aws_event_loop
sourceimpl Default for aws_event_loop
impl Default for aws_event_loop
sourceimpl PartialEq<aws_event_loop> for aws_event_loop
impl PartialEq<aws_event_loop> for aws_event_loop
sourcefn eq(&self, other: &aws_event_loop) -> bool
fn eq(&self, other: &aws_event_loop) -> bool
impl Copy for aws_event_loop
impl Eq for aws_event_loop
impl StructuralEq for aws_event_loop
impl StructuralPartialEq for aws_event_loop
Auto Trait Implementations
impl RefUnwindSafe for aws_event_loop
impl !Send for aws_event_loop
impl !Sync for aws_event_loop
impl Unpin for aws_event_loop
impl UnwindSafe for aws_event_loop
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more