pub struct FramebufferAttachment {
pub usage: Usage,
pub view_caps: ViewCapabilities,
pub format: Format,
}
Expand description
Description of a framebuffer attachment.
Fields§
§usage: Usage
Usage that an image is created with.
view_caps: ViewCapabilities
View capabilities that an image is created with.
format: Format
The image view format.
Trait Implementations§
Source§impl Clone for FramebufferAttachment
impl Clone for FramebufferAttachment
Source§fn clone(&self) -> FramebufferAttachment
fn clone(&self) -> FramebufferAttachment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FramebufferAttachment
impl Debug for FramebufferAttachment
Source§impl Hash for FramebufferAttachment
impl Hash for FramebufferAttachment
Source§impl PartialEq for FramebufferAttachment
impl PartialEq for FramebufferAttachment
impl Eq for FramebufferAttachment
impl StructuralPartialEq for FramebufferAttachment
Auto Trait Implementations§
impl Freeze for FramebufferAttachment
impl RefUnwindSafe for FramebufferAttachment
impl Send for FramebufferAttachment
impl Sync for FramebufferAttachment
impl Unpin for FramebufferAttachment
impl UnwindSafe for FramebufferAttachment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more