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

A list of attachments.

Required Methods

Implementations on Foreign Types

Implementors