Struct vulkan_bindings::FramebufferCreateInfo
source · [−]#[repr(C)]pub struct FramebufferCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: FramebufferCreateFlags,
pub renderPass: RenderPass,
pub attachmentCount: u32,
pub pAttachments: *const ImageView,
pub width: u32,
pub height: u32,
pub layers: u32,
}Fields
sType: StructureTypepNext: *const c_voidflags: FramebufferCreateFlagsrenderPass: RenderPassattachmentCount: u32pAttachments: *const ImageViewwidth: u32height: u32layers: u32Trait Implementations
sourceimpl Clone for FramebufferCreateInfo
impl Clone for FramebufferCreateInfo
sourcefn clone(&self) -> FramebufferCreateInfo
fn clone(&self) -> FramebufferCreateInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for FramebufferCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for FramebufferCreateInfo
impl !Send for FramebufferCreateInfo
impl !Sync for FramebufferCreateInfo
impl Unpin for FramebufferCreateInfo
impl UnwindSafe for FramebufferCreateInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more