pub struct VkImageSubresource {
pub aspect_mask: VkImageAspectFlags,
pub mip_level: usize,
pub array_layer: usize,
}
Expand description
Wrapper for VkImageSubresource.
Fields§
§aspect_mask: VkImageAspectFlags
§mip_level: usize
§array_layer: usize
Trait Implementations§
Source§impl Clone for VkImageSubresource
impl Clone for VkImageSubresource
Source§fn clone(&self) -> VkImageSubresource
fn clone(&self) -> VkImageSubresource
Returns a copy 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 VkImageSubresource
impl Debug for VkImageSubresource
Source§impl Default for VkImageSubresource
impl Default for VkImageSubresource
Source§fn default() -> VkImageSubresource
fn default() -> VkImageSubresource
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkImageSubresource
impl RefUnwindSafe for VkImageSubresource
impl Send for VkImageSubresource
impl Sync for VkImageSubresource
impl Unpin for VkImageSubresource
impl UnwindSafe for VkImageSubresource
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