Enum arcdps_imgui::HistoryDirection
source · pub enum HistoryDirection {
Up,
Down,
}
Expand description
The arrow key a user pressed to trigger the on_history
callback.
Variants§
Trait Implementations§
source§impl Clone for HistoryDirection
impl Clone for HistoryDirection
source§fn clone(&self) -> HistoryDirection
fn clone(&self) -> HistoryDirection
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 HistoryDirection
impl Debug for HistoryDirection
source§impl Hash for HistoryDirection
impl Hash for HistoryDirection
source§impl Ord for HistoryDirection
impl Ord for HistoryDirection
source§fn cmp(&self, other: &HistoryDirection) -> Ordering
fn cmp(&self, other: &HistoryDirection) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for HistoryDirection
impl PartialEq for HistoryDirection
source§fn eq(&self, other: &HistoryDirection) -> bool
fn eq(&self, other: &HistoryDirection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for HistoryDirection
impl PartialOrd for HistoryDirection
source§fn partial_cmp(&self, other: &HistoryDirection) -> Option<Ordering>
fn partial_cmp(&self, other: &HistoryDirection) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for HistoryDirection
impl Eq for HistoryDirection
impl StructuralPartialEq for HistoryDirection
Auto Trait Implementations§
impl Freeze for HistoryDirection
impl RefUnwindSafe for HistoryDirection
impl Send for HistoryDirection
impl Sync for HistoryDirection
impl Unpin for HistoryDirection
impl UnwindSafe for HistoryDirection
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