pub enum SwapBuffersError {
AlreadySwapped,
ContextLost(Box<dyn Error>),
TemporaryFailure(Box<dyn Error>),
}
Expand description
Error that can happen when swapping buffers.
Variants§
AlreadySwapped
The buffers have already been swapped.
This error can be returned when swap_buffers
has been called multiple times
without any modification in between.
ContextLost(Box<dyn Error>)
The corresponding context has been lost and needs to be recreated.
All the objects associated to it (textures, buffers, programs, etc.) need to be recreated from scratch. Underlying resources like native surfaces might also need to be recreated.
Operations will have no effect. Functions that read textures, buffers, etc. will return uninitialized data instead.
TemporaryFailure(Box<dyn Error>)
A temporary condition caused to rendering to fail.
Depending on the underlying error this might require fixing internal state of the rendering backend,
but failures mapped to TemporaryFailure
are always recoverable without re-creating the entire stack,
as is represented by ContextLost
.
Proceed after investigating the source to reschedule another full rendering step or just this page_flip at a later time. If the root cause cannot be discovered and subsequent renderings also fail, it is advised to fallback to recreation.
Trait Implementations§
Source§impl Debug for SwapBuffersError
impl Debug for SwapBuffersError
Source§impl Display for SwapBuffersError
impl Display for SwapBuffersError
Source§impl Error for SwapBuffersError
impl Error for SwapBuffersError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl From<Error> for SwapBuffersError
impl From<Error> for SwapBuffersError
Source§fn from(err: Error) -> SwapBuffersError
fn from(err: Error) -> SwapBuffersError
Source§impl From<Error> for SwapBuffersError
impl From<Error> for SwapBuffersError
Source§fn from(err: Error) -> SwapBuffersError
fn from(err: Error) -> SwapBuffersError
Source§impl From<Gles2Error> for SwapBuffersError
impl From<Gles2Error> for SwapBuffersError
Source§fn from(err: Gles2Error) -> SwapBuffersError
fn from(err: Gles2Error) -> SwapBuffersError
Source§impl From<MakeCurrentError> for SwapBuffersError
impl From<MakeCurrentError> for SwapBuffersError
Source§fn from(err: MakeCurrentError) -> GraphicsSwapBuffersError
fn from(err: MakeCurrentError) -> GraphicsSwapBuffersError
Source§impl From<SwapBuffersError> for SwapBuffersError
impl From<SwapBuffersError> for SwapBuffersError
Source§fn from(value: SwapBuffersError) -> Self
fn from(value: SwapBuffersError) -> Self
Auto Trait Implementations§
impl Freeze for SwapBuffersError
impl !RefUnwindSafe for SwapBuffersError
impl !Send for SwapBuffersError
impl !Sync for SwapBuffersError
impl Unpin for SwapBuffersError
impl !UnwindSafe for SwapBuffersError
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.