pub struct CommandPoolProperties {
pub flags: CommandPoolCreateFlags,
pub queue_family_index: u32,
}Expand description
Note: default value for queue_family_index is nothing!
Fields§
§flags: CommandPoolCreateFlags§queue_family_index: u32Implementations§
Source§impl CommandPoolProperties
impl CommandPoolProperties
pub fn new_default(queue_family_index: u32) -> Self
pub fn write_create_info_builder<'a>( &self, builder: CommandPoolCreateInfoBuilder<'a>, ) -> CommandPoolCreateInfoBuilder<'a>
pub fn create_info_builder(&self) -> CommandPoolCreateInfoBuilder<'_>
pub fn from_create_info_builder( value: &CommandPoolCreateInfoBuilder<'_>, ) -> Self
Trait Implementations§
Source§impl Clone for CommandPoolProperties
impl Clone for CommandPoolProperties
Source§fn clone(&self) -> CommandPoolProperties
fn clone(&self) -> CommandPoolProperties
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 Default for CommandPoolProperties
impl Default for CommandPoolProperties
Source§fn default() -> CommandPoolProperties
fn default() -> CommandPoolProperties
Returns the “default value” for a type. Read more
impl Copy for CommandPoolProperties
Auto Trait Implementations§
impl Freeze for CommandPoolProperties
impl RefUnwindSafe for CommandPoolProperties
impl Send for CommandPoolProperties
impl Sync for CommandPoolProperties
impl Unpin for CommandPoolProperties
impl UnwindSafe for CommandPoolProperties
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