#[repr(C)]pub struct PipelinePoolSize {
pub s_type: StructureType,
pub p_next: *const c_void,
pub pool_entry_size: u64,
pub pool_entry_count: u32,
}Expand description
VkPipelinePoolSize
Provided by VKSC_VERSION_1_0.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PIPELINE_POOL_SIZE.
p_next: *const c_voidOptional, may be null.
pool_entry_size: u64§pool_entry_count: u32Implementations§
Source§impl PipelinePoolSize
impl PipelinePoolSize
Sourcepub fn builder<'a>() -> PipelinePoolSizeBuilder<'a>
pub fn builder<'a>() -> PipelinePoolSizeBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PipelinePoolSize
impl Clone for PipelinePoolSize
Source§fn clone(&self) -> PipelinePoolSize
fn clone(&self) -> PipelinePoolSize
Returns a duplicate 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 moreSource§impl Debug for PipelinePoolSize
impl Debug for PipelinePoolSize
Source§impl Default for PipelinePoolSize
impl Default for PipelinePoolSize
Source§fn default() -> PipelinePoolSize
fn default() -> PipelinePoolSize
Returns the “default value” for a type. Read more
impl Copy for PipelinePoolSize
Auto Trait Implementations§
impl Freeze for PipelinePoolSize
impl RefUnwindSafe for PipelinePoolSize
impl !Send for PipelinePoolSize
impl !Sync for PipelinePoolSize
impl Unpin for PipelinePoolSize
impl UnsafeUnpin for PipelinePoolSize
impl UnwindSafe for PipelinePoolSize
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