pub struct Request {
pub size: u64,
pub align_mask: u64,
pub usage: UsageFlags,
pub memory_types: u32,
}Expand description
Memory request for allocator.
Fields
size: u64Minimal size of memory block required.
Returned block may have larger size,
use MemoryBlock::size to learn actual size of returned block.
align_mask: u64Minimal alignment mask required.
Returned block may have larger alignment,
use MemoryBlock::align to learn actual alignment of returned block.
usage: UsageFlagsIntended memory usage.
Returned block may support additional usages,
use MemoryBlock::props to learn memory properties of returned block.
memory_types: u32Bitset for memory types.
Returned block will be from memory type corresponding to one of set bits,
use MemoryBlock::memory_type to learn memory type index of returned block.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Request
impl UnwindSafe for Request
Blanket Implementations
Mutably borrows from an owned value. Read more