Type Alias wgpu::hal::MemoryRange

source ·
pub type MemoryRange = Range<u64>;
Available on wgpu_core only.

Aliased Type§

struct MemoryRange {
    pub start: u64,
    pub end: u64,
}

Fields§

§start: u64

The lower bound of the range (inclusive).

§end: u64

The upper bound of the range (exclusive).