pub enum RenderTargetError {
InvalidId(String),
DuplicateId(String),
DepthStencilAlreadyPresent(String),
NoResources,
ColorTargetBufferDoesNotExists(usize),
Internal(String),
}
Variants§
InvalidId(String)
DuplicateId(String)
DepthStencilAlreadyPresent(String)
NoResources
ColorTargetBufferDoesNotExists(usize)
Internal(String)
Trait Implementations§
source§impl Clone for RenderTargetError
impl Clone for RenderTargetError
source§fn clone(&self) -> RenderTargetError
fn clone(&self) -> RenderTargetError
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 moreAuto Trait Implementations§
impl RefUnwindSafe for RenderTargetError
impl Send for RenderTargetError
impl Sync for RenderTargetError
impl Unpin for RenderTargetError
impl UnwindSafe for RenderTargetError
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