pub enum FormFactor {
ExternalDisplay,
InternalDisplay,
Remote,
}Expand description
Specifies how the tablet is integrated.
Variants§
ExternalDisplay
The tablet is integrated into a display, e.g. a Wacom Cintiq.
InternalDisplay
The tablet is integrated into the display of a system, e.g. a built-in tablet in a laptop.
Remote
The tablet is an external remote like the Wacom ExpressKey Remote.
Trait Implementations§
Source§impl Clone for FormFactor
impl Clone for FormFactor
Source§fn clone(&self) -> FormFactor
fn clone(&self) -> FormFactor
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 FormFactor
impl Debug for FormFactor
Source§impl PartialEq for FormFactor
impl PartialEq for FormFactor
Source§impl PartialOrd for FormFactor
impl PartialOrd for FormFactor
impl Copy for FormFactor
impl Eq for FormFactor
impl StructuralPartialEq for FormFactor
Auto Trait Implementations§
impl Freeze for FormFactor
impl RefUnwindSafe for FormFactor
impl Send for FormFactor
impl Sync for FormFactor
impl Unpin for FormFactor
impl UnwindSafe for FormFactor
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