[−][src]Trait vulkano::framebuffer::AttachmentsList
A list of attachments.
Required methods
fn num_attachments(&self) -> usize
fn as_image_view_access(&self, index: usize) -> Option<&dyn ImageViewAccess>
Implementations on Foreign Types
impl AttachmentsList for ()
[src]
fn num_attachments(&self) -> usize
[src]
fn as_image_view_access(&self, _: usize) -> Option<&dyn ImageViewAccess>
[src]
impl AttachmentsList for Vec<Arc<dyn ImageViewAccess + Send + Sync>>
[src]
fn num_attachments(&self) -> usize
[src]
fn as_image_view_access(&self, index: usize) -> Option<&dyn ImageViewAccess>
[src]
impl<A, B> AttachmentsList for (A, B) where
A: AttachmentsList,
B: ImageViewAccess,
[src]
A: AttachmentsList,
B: ImageViewAccess,
fn num_attachments(&self) -> usize
[src]
fn as_image_view_access(&self, index: usize) -> Option<&dyn ImageViewAccess>
[src]
Implementors
impl<T> AttachmentsList for T where
T: SafeDeref,
T::Target: AttachmentsList,
[src]
T: SafeDeref,
T::Target: AttachmentsList,