pub struct VkDescriptorPoolCreateFlags {
pub free_descriptor_set: bool,
pub update_after_bind: bool,
}Expand description
Wrapper for VkDescriptorPoolCreateFlags.
Use the macro VkDescriptorPoolCreateFlags! as an alternative method to create a structure. For example, these two snippets return the same value:
VkDescriptorPoolCreateFlags!(free_descriptor_set, update_after_bind)VkDescriptorPoolCreateFlags {
free_descriptor_set: true,
update_after_bind: true,
}Fields§
§free_descriptor_set: bool§update_after_bind: boolImplementations§
Trait Implementations§
Source§impl Clone for VkDescriptorPoolCreateFlags
impl Clone for VkDescriptorPoolCreateFlags
Source§fn clone(&self) -> VkDescriptorPoolCreateFlags
fn clone(&self) -> VkDescriptorPoolCreateFlags
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 VkDescriptorPoolCreateFlags
impl Debug for VkDescriptorPoolCreateFlags
Source§impl Default for VkDescriptorPoolCreateFlags
impl Default for VkDescriptorPoolCreateFlags
Source§fn default() -> VkDescriptorPoolCreateFlags
fn default() -> VkDescriptorPoolCreateFlags
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkDescriptorPoolCreateFlags
impl RefUnwindSafe for VkDescriptorPoolCreateFlags
impl Send for VkDescriptorPoolCreateFlags
impl Sync for VkDescriptorPoolCreateFlags
impl Unpin for VkDescriptorPoolCreateFlags
impl UnwindSafe for VkDescriptorPoolCreateFlags
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