pub enum NextOption {
Continue,
Next,
Dispose,
ClearAbort,
Terminate,
}Expand description
Frame transition commands.
Variants§
Trait Implementations§
Source§impl Clone for NextOption
impl Clone for NextOption
Source§fn clone(&self) -> NextOption
fn clone(&self) -> NextOption
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 moreimpl Copy for NextOption
Source§impl Debug for NextOption
impl Debug for NextOption
impl Eq for NextOption
Source§impl PartialEq for NextOption
impl PartialEq for NextOption
Source§fn eq(&self, other: &NextOption) -> bool
fn eq(&self, other: &NextOption) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NextOption
Auto Trait Implementations§
impl Freeze for NextOption
impl RefUnwindSafe for NextOption
impl Send for NextOption
impl Sync for NextOption
impl Unpin for NextOption
impl UnsafeUnpin for NextOption
impl UnwindSafe for NextOption
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