#[repr(C)]pub struct uct_pending_req {
pub func: uct_pending_callback_t,
pub priv_: [c_char; 40],
}Expand description
@ingroup UCT_RESOURCE @brief Pending request.
This structure should be passed to @ref uct_ep_pending_add() and is used to signal new available resources back to user.
Fields§
§func: uct_pending_callback_t< User callback function
priv_: [c_char; 40]< Used internally by UCT
Trait Implementations§
Source§impl Clone for uct_pending_req
impl Clone for uct_pending_req
Source§fn clone(&self) -> uct_pending_req
fn clone(&self) -> uct_pending_req
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 uct_pending_req
impl Debug for uct_pending_req
impl Copy for uct_pending_req
Auto Trait Implementations§
impl Freeze for uct_pending_req
impl RefUnwindSafe for uct_pending_req
impl Send for uct_pending_req
impl Sync for uct_pending_req
impl Unpin for uct_pending_req
impl UnwindSafe for uct_pending_req
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