pub enum ReleaseBehavior {
None,
Flush,
}
Expand description
The behavior of the driver when you change the current context.
Variants§
None
Doesn’t do anything. Most notably doesn’t flush. Not supported by all drivers.
§Api-specific
- macOS: not supported,
Self::Flush
is always used.
Flush
Flushes the context that was previously current as if glFlush
was
called. This is the default behavior.
Trait Implementations§
Source§impl Clone for ReleaseBehavior
impl Clone for ReleaseBehavior
Source§fn clone(&self) -> ReleaseBehavior
fn clone(&self) -> ReleaseBehavior
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 ReleaseBehavior
impl Debug for ReleaseBehavior
Source§impl Default for ReleaseBehavior
impl Default for ReleaseBehavior
Source§fn default() -> ReleaseBehavior
fn default() -> ReleaseBehavior
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReleaseBehavior
impl PartialEq for ReleaseBehavior
impl Copy for ReleaseBehavior
impl Eq for ReleaseBehavior
impl StructuralPartialEq for ReleaseBehavior
Auto Trait Implementations§
impl Freeze for ReleaseBehavior
impl RefUnwindSafe for ReleaseBehavior
impl Send for ReleaseBehavior
impl Sync for ReleaseBehavior
impl Unpin for ReleaseBehavior
impl UnwindSafe for ReleaseBehavior
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