pub enum FeedbackDirection {
Positive,
Negative,
}Variants§
Trait Implementations§
Source§impl Clone for FeedbackDirection
impl Clone for FeedbackDirection
Source§fn clone(&self) -> FeedbackDirection
fn clone(&self) -> FeedbackDirection
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 moreSource§impl Debug for FeedbackDirection
impl Debug for FeedbackDirection
Source§impl PartialEq for FeedbackDirection
impl PartialEq for FeedbackDirection
Source§fn eq(&self, other: &FeedbackDirection) -> bool
fn eq(&self, other: &FeedbackDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FeedbackDirection
impl Eq for FeedbackDirection
impl StructuralPartialEq for FeedbackDirection
Auto Trait Implementations§
impl Freeze for FeedbackDirection
impl RefUnwindSafe for FeedbackDirection
impl Send for FeedbackDirection
impl Sync for FeedbackDirection
impl Unpin for FeedbackDirection
impl UnsafeUnpin for FeedbackDirection
impl UnwindSafe for FeedbackDirection
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