#[repr(C)]pub struct Extent3D {
pub width: u32,
pub height: u32,
pub depth: u32,
}Expand description
Chapter: Fundamentals
Description: Structure specifying a three-dimensional extent
Provided by: VK_VERSION_1_0
Reference: VkExtent3D
Initialization template:
let extent_3d = vk::Extent3D {
width: todo!("u32"),
height: todo!("u32"),
depth: todo!("u32"),
};Fields§
§width: u32§height: u32§depth: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Extent3D
impl RefUnwindSafe for Extent3D
impl Send for Extent3D
impl Sync for Extent3D
impl Unpin for Extent3D
impl UnwindSafe for Extent3D
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