pub enum GlFramebufferAttachment {
Color(u32),
Depth,
Stencil,
DepthStencil,
}Variants§
Trait Implementations§
Source§impl Clone for GlFramebufferAttachment
impl Clone for GlFramebufferAttachment
Source§fn clone(&self) -> GlFramebufferAttachment
fn clone(&self) -> GlFramebufferAttachment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GlFramebufferAttachment
impl Debug for GlFramebufferAttachment
Source§impl PartialEq for GlFramebufferAttachment
impl PartialEq for GlFramebufferAttachment
Source§fn eq(&self, other: &GlFramebufferAttachment) -> bool
fn eq(&self, other: &GlFramebufferAttachment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GlFramebufferAttachment
impl Eq for GlFramebufferAttachment
impl StructuralPartialEq for GlFramebufferAttachment
Auto Trait Implementations§
impl Freeze for GlFramebufferAttachment
impl RefUnwindSafe for GlFramebufferAttachment
impl Send for GlFramebufferAttachment
impl Sync for GlFramebufferAttachment
impl Unpin for GlFramebufferAttachment
impl UnsafeUnpin for GlFramebufferAttachment
impl UnwindSafe for GlFramebufferAttachment
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