pub struct QueueMemory<'a> {
pub desc: DeviceRange<'a>,
pub avail: DeviceRange<'a>,
pub used: DeviceRange<'a>,
}
Expand description
Describes the memory ranges for a queue.
Collects the three different memory ranges that combined make up the Driver
and Device
portions of a queue. This exists as a way to conveniently name the
members for passing to Queue::new
Fields§
§desc: DeviceRange<'a>
§avail: DeviceRange<'a>
§used: DeviceRange<'a>
Trait Implementations§
Source§impl<'a> Clone for QueueMemory<'a>
impl<'a> Clone for QueueMemory<'a>
Source§fn clone(&self) -> QueueMemory<'a>
fn clone(&self) -> QueueMemory<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for QueueMemory<'a>
impl<'a> RefUnwindSafe for QueueMemory<'a>
impl<'a> Send for QueueMemory<'a>
impl<'a> Sync for QueueMemory<'a>
impl<'a> Unpin for QueueMemory<'a>
impl<'a> UnwindSafe for QueueMemory<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)