#[repr(C)]pub struct AsyncRequest {
pub requestor: *mut PlanState,
pub requestee: *mut PlanState,
pub request_index: c_int,
pub callback_pending: bool,
pub request_complete: bool,
pub result: *mut TupleTableSlot,
}
Fields§
§requestor: *mut PlanState
§requestee: *mut PlanState
§request_index: c_int
§callback_pending: bool
§request_complete: bool
§result: *mut TupleTableSlot
Trait Implementations§
Source§impl Clone for AsyncRequest
impl Clone for AsyncRequest
Source§fn clone(&self) -> AsyncRequest
fn clone(&self) -> AsyncRequest
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 AsyncRequest
impl Debug for AsyncRequest
Source§impl Default for AsyncRequest
impl Default for AsyncRequest
impl Copy for AsyncRequest
Auto Trait Implementations§
impl Freeze for AsyncRequest
impl RefUnwindSafe for AsyncRequest
impl !Send for AsyncRequest
impl !Sync for AsyncRequest
impl Unpin for AsyncRequest
impl UnwindSafe for AsyncRequest
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