pub struct QueueConfig {
pub driver: Box<dyn Driver>,
}Expand description
Per-queue configuration passed to Endpoint::get_queues.
Contains only an async driver handle. Receive buffers are posted
separately via Queue::rx_avail after queue creation.
Fields§
§driver: Box<dyn Driver>Auto Trait Implementations§
impl Freeze for QueueConfig
impl !RefUnwindSafe for QueueConfig
impl Send for QueueConfig
impl Sync for QueueConfig
impl Unpin for QueueConfig
impl UnsafeUnpin for QueueConfig
impl !UnwindSafe for QueueConfig
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