pub struct Queue<A: HalApi> {
pub device: Option<Arc<Device<A>>>,
pub raw: Option<A::Queue>,
pub info: ResourceInfo<QueueId>,
}
Fields§
§device: Option<Arc<Device<A>>>
§raw: Option<A::Queue>
§info: ResourceInfo<QueueId>
Trait Implementations§
source§impl<A: HalApi> Resource<Id<Device<Api>>> for Queue<A>
impl<A: HalApi> Resource<Id<Device<Api>>> for Queue<A>
const TYPE: &'static str = "Queue"
fn as_info(&self) -> &ResourceInfo<QueueId>
fn as_info_mut(&mut self) -> &mut ResourceInfo<QueueId>
fn label(&self) -> String
fn ref_count(self: &Arc<Self>) -> usize
fn is_unique(self: &Arc<Self>) -> bool
fn is_equal(&self, other: &Self) -> bool
Auto Trait Implementations§
impl<A> !RefUnwindSafe for Queue<A>
impl<A> Send for Queue<A>
impl<A> Sync for Queue<A>
impl<A> Unpin for Queue<A>
impl<A> !UnwindSafe for Queue<A>
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