#[non_exhaustive]pub struct VulkanOwnedTextureDescriptor {
pub extent: RenderTargetExtent,
pub context: VulkanContextDescriptor,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.extent: RenderTargetExtent§context: VulkanContextDescriptorImplementations§
Source§impl VulkanOwnedTextureDescriptor
impl VulkanOwnedTextureDescriptor
pub fn new(extent: RenderTargetExtent, context: VulkanContextDescriptor) -> Self
Trait Implementations§
Source§impl Clone for VulkanOwnedTextureDescriptor
impl Clone for VulkanOwnedTextureDescriptor
Source§fn clone(&self) -> VulkanOwnedTextureDescriptor
fn clone(&self) -> VulkanOwnedTextureDescriptor
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 VulkanOwnedTextureDescriptor
impl Debug for VulkanOwnedTextureDescriptor
Source§impl PartialEq for VulkanOwnedTextureDescriptor
impl PartialEq for VulkanOwnedTextureDescriptor
Source§fn eq(&self, other: &VulkanOwnedTextureDescriptor) -> bool
fn eq(&self, other: &VulkanOwnedTextureDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VulkanOwnedTextureDescriptor
Auto Trait Implementations§
impl Freeze for VulkanOwnedTextureDescriptor
impl RefUnwindSafe for VulkanOwnedTextureDescriptor
impl !Send for VulkanOwnedTextureDescriptor
impl !Sync for VulkanOwnedTextureDescriptor
impl Unpin for VulkanOwnedTextureDescriptor
impl UnsafeUnpin for VulkanOwnedTextureDescriptor
impl UnwindSafe for VulkanOwnedTextureDescriptor
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