pub enum FramePlacement {
DuringPress,
Outside(String),
Uncertain(String),
}Expand description
Where a captured frame sits relative to the press.
Variants§
DuringPress
The touch was provably still down for the whole capture.
Outside(String)
The touch was provably not down for part of the capture.
Uncertain(String)
It cannot be placed either way.
Its own answer rather than a pass, because the whole point of the verb is to hand back a frame of a held state, and a frame that might be of a resting one is what sent the consumer who asked for this down a wrong path in the first place.
Trait Implementations§
Source§impl Clone for FramePlacement
impl Clone for FramePlacement
Source§fn clone(&self) -> FramePlacement
fn clone(&self) -> FramePlacement
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 FramePlacement
impl Debug for FramePlacement
Source§impl PartialEq for FramePlacement
impl PartialEq for FramePlacement
impl StructuralPartialEq for FramePlacement
Auto Trait Implementations§
impl Freeze for FramePlacement
impl RefUnwindSafe for FramePlacement
impl Send for FramePlacement
impl Sync for FramePlacement
impl Unpin for FramePlacement
impl UnsafeUnpin for FramePlacement
impl UnwindSafe for FramePlacement
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