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