Struct ash::vk::BufferCreateInfo
source · #[repr(C)]pub struct BufferCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: BufferCreateFlags,
pub size: DeviceSize,
pub usage: BufferUsageFlags,
pub sharing_mode: SharingMode,
pub queue_family_index_count: u32,
pub p_queue_family_indices: *const u32,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: BufferCreateFlags
§size: DeviceSize
§usage: BufferUsageFlags
§sharing_mode: SharingMode
§queue_family_index_count: u32
§p_queue_family_indices: *const u32
Implementations§
source§impl BufferCreateInfo
impl BufferCreateInfo
pub fn builder<'a>() -> BufferCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for BufferCreateInfo
impl Clone for BufferCreateInfo
source§fn clone(&self) -> BufferCreateInfo
fn clone(&self) -> BufferCreateInfo
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 more