pub enum PaneDragResizeNoopReason {
IdleWithoutActiveDrag,
ActiveDragAlreadyInProgress,
PointerMismatch,
TargetMismatch,
ActiveStateDisallowsDiscreteInput,
ThresholdNotReached,
BelowHysteresis,
}Expand description
Explicit no-op diagnostics for lifecycle events that are safely ignored.
Variants§
IdleWithoutActiveDrag
ActiveDragAlreadyInProgress
PointerMismatch
TargetMismatch
ActiveStateDisallowsDiscreteInput
ThresholdNotReached
BelowHysteresis
Trait Implementations§
Source§impl Clone for PaneDragResizeNoopReason
impl Clone for PaneDragResizeNoopReason
Source§fn clone(&self) -> PaneDragResizeNoopReason
fn clone(&self) -> PaneDragResizeNoopReason
Returns a duplicate 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 PaneDragResizeNoopReason
impl Debug for PaneDragResizeNoopReason
Source§impl<'de> Deserialize<'de> for PaneDragResizeNoopReason
impl<'de> Deserialize<'de> for PaneDragResizeNoopReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PaneDragResizeNoopReason
impl PartialEq for PaneDragResizeNoopReason
Source§impl Serialize for PaneDragResizeNoopReason
impl Serialize for PaneDragResizeNoopReason
impl Copy for PaneDragResizeNoopReason
impl Eq for PaneDragResizeNoopReason
impl StructuralPartialEq for PaneDragResizeNoopReason
Auto Trait Implementations§
impl Freeze for PaneDragResizeNoopReason
impl RefUnwindSafe for PaneDragResizeNoopReason
impl Send for PaneDragResizeNoopReason
impl Sync for PaneDragResizeNoopReason
impl Unpin for PaneDragResizeNoopReason
impl UnsafeUnpin for PaneDragResizeNoopReason
impl UnwindSafe for PaneDragResizeNoopReason
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