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

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

A list of attachments.

Required methods

Loading content...

Implementations on Foreign Types

impl AttachmentsList for ()[src]

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

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

Loading content...

Implementors

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

Loading content...