pub struct ExpEasingHint {
pub is_attenuation: bool,
pub is_in_out: bool,
}
Expand description
Hints that a float property should be edited via an exponential easing function.
Fields§
§is_attenuation: bool
Flip the curve horizontally.
is_in_out: bool
Also include in/out easing.
Implementations§
Source§impl ExpEasingHint
impl ExpEasingHint
Trait Implementations§
Source§impl Clone for ExpEasingHint
impl Clone for ExpEasingHint
Source§fn clone(&self) -> ExpEasingHint
fn clone(&self) -> ExpEasingHint
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 ExpEasingHint
impl Debug for ExpEasingHint
Source§impl Default for ExpEasingHint
impl Default for ExpEasingHint
Source§fn default() -> ExpEasingHint
fn default() -> ExpEasingHint
Returns the “default value” for a type. Read more
Source§impl<T> From<ExpEasingHint> for FloatHint<T>
impl<T> From<ExpEasingHint> for FloatHint<T>
Source§fn from(hint: ExpEasingHint) -> Self
fn from(hint: ExpEasingHint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExpEasingHint
impl PartialEq for ExpEasingHint
impl Copy for ExpEasingHint
impl Eq for ExpEasingHint
impl StructuralPartialEq for ExpEasingHint
Auto Trait Implementations§
impl Freeze for ExpEasingHint
impl RefUnwindSafe for ExpEasingHint
impl Send for ExpEasingHint
impl Sync for ExpEasingHint
impl Unpin for ExpEasingHint
impl UnwindSafe for ExpEasingHint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.