Searched refs:CompletionQueueHandle (Results 1 – 2 of 2) sorted by relevance
18 pub struct CompletionQueueHandle { struct27 unsafe impl Sync for CompletionQueueHandle {} implementation28 unsafe impl Send for CompletionQueueHandle {} implementation30 impl CompletionQueueHandle { implementation31 pub fn new() -> CompletionQueueHandle { in new()32 CompletionQueueHandle { in new()110 impl Drop for CompletionQueueHandle { implementation189 handle: Arc<CompletionQueueHandle>,194 pub fn new(handle: Arc<CompletionQueueHandle>, worker: Arc<WorkQueue>) -> CompletionQueue { in new() argument
10 use crate::cq::{CompletionQueue, CompletionQueueHandle, EventType, WorkQueue};15 let cq = Arc::new(CompletionQueueHandle::new()); in poll_queue()