Trait vulkano::framebuffer::AttachmentsList [] [src]

pub unsafe trait AttachmentsList {
    fn num_attachments(&self) -> usize;
fn as_image_view_access(&self, index: usize) -> Option<&ImageViewAccess>; }

A list of attachments.

Required Methods

Implementations on Foreign Types

impl AttachmentsList for ()
[src]

impl AttachmentsList for Vec<Arc<ImageViewAccess + Send + Sync>>
[src]

impl<A, B> AttachmentsList for (A, B) where
    A: AttachmentsList,
    B: ImageViewAccess
[src]

Implementors