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

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

A list of attachments.

Required methods

fn num_attachments(&self) -> usize

fn as_image_view_access(&self, index: usize) -> Option<&dyn ImageViewAccess>

Loading content...

Implementations on Foreign Types

impl AttachmentsList for ()[src]

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

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

Loading content...

Implementors

impl<T> AttachmentsList for T where
    T: SafeDeref,
    T::Target: AttachmentsList
[src]

Loading content...