pub enum EV_FF {
Show 19 variants
FF_STATUS_STOPPED = 0,
FF_STATUS_PLAYING = 1,
FF_RUMBLE = 80,
FF_PERIODIC = 81,
FF_CONSTANT = 82,
FF_SPRING = 83,
FF_FRICTION = 84,
FF_DAMPER = 85,
FF_INERTIA = 86,
FF_RAMP = 87,
FF_SQUARE = 88,
FF_TRIANGLE = 89,
FF_SINE = 90,
FF_SAW_UP = 91,
FF_SAW_DOWN = 92,
FF_CUSTOM = 93,
FF_GAIN = 96,
FF_AUTOCENTER = 97,
FF_MAX = 127,
}
Variants§
FF_STATUS_STOPPED = 0
FF_STATUS_PLAYING = 1
FF_RUMBLE = 80
FF_PERIODIC = 81
FF_CONSTANT = 82
FF_SPRING = 83
FF_FRICTION = 84
FF_DAMPER = 85
FF_INERTIA = 86
FF_RAMP = 87
FF_SQUARE = 88
FF_TRIANGLE = 89
FF_SINE = 90
FF_SAW_UP = 91
FF_SAW_DOWN = 92
FF_CUSTOM = 93
FF_GAIN = 96
FF_AUTOCENTER = 97
FF_MAX = 127
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for EV_FF
impl<'de> Deserialize<'de> for EV_FF
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 Ord for EV_FF
impl Ord for EV_FF
source§impl PartialEq for EV_FF
impl PartialEq for EV_FF
source§impl PartialOrd for EV_FF
impl PartialOrd for EV_FF
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 EV_FF
impl Eq for EV_FF
impl StructuralPartialEq for EV_FF
Auto Trait Implementations§
impl Freeze for EV_FF
impl RefUnwindSafe for EV_FF
impl Send for EV_FF
impl Sync for EV_FF
impl Unpin for EV_FF
impl UnwindSafe for EV_FF
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