Skip to main content

Cycle

Struct Cycle 

Source
pub struct Cycle<T, E, I>(/* private fields */)
where
    T: Lerp + PartialEq,
    E: Fn(f64) -> f64,
    I: Fn(&T, &T, f64) -> T;

Implementations§

Source§

impl<T, E, I> Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T,

Source

pub fn new(initial: T, duration: f64, easing: E, interp: I) -> Cycle<T, E, I>

Trait Implementations§

Source§

impl<T, E, I> AddAssign<T> for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T, &'b T: for<'b> Add<T, Output = T>,

Source§

fn add_assign(&mut self, rhs: T)

Performs the += operation. Read more
Source§

impl<T, E, I> Animate for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T,

Source§

type Value = T

Source§

fn update(&mut self)

Source§

fn get(&self) -> &T

Source§

fn set(&mut self, target: T)

Source§

fn target(&self) -> &T

Source§

impl<T, E, I> Debug for Cycle<T, E, I>
where T: Debug + Lerp + PartialEq, E: Debug + Fn(f64) -> f64, I: Debug + Fn(&T, &T, f64) -> T,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T, E, I> Deref for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T,

Source§

type Target = T

The resulting type after dereferencing.
Source§

fn deref(&self) -> &T

Dereferences the value.
Source§

impl<T, E, I> Display for Cycle<T, E, I>
where T: Lerp + PartialEq + Default + Display, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T, E, I> DivAssign<T> for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T, &'b T: for<'b> Div<T, Output = T>,

Source§

fn div_assign(&mut self, rhs: T)

Performs the /= operation. Read more
Source§

impl<T, E, I> MulAssign<T> for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T, &'b T: for<'b> Mul<T, Output = T>,

Source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
Source§

impl<T, E, I> SubAssign<T> for Cycle<T, E, I>
where T: Lerp + PartialEq + Default, E: Fn(f64) -> f64, I: Fn(&T, &T, f64) -> T, &'b T: for<'b> Sub<T, Output = T>,

Source§

fn sub_assign(&mut self, rhs: T)

Performs the -= operation. Read more

Auto Trait Implementations§

§

impl<T, E, I> Freeze for Cycle<T, E, I>
where E: Freeze, I: Freeze, T: Freeze,

§

impl<T, E, I> RefUnwindSafe for Cycle<T, E, I>

§

impl<T, E, I> Send for Cycle<T, E, I>
where E: Send, I: Send, T: Send,

§

impl<T, E, I> Sync for Cycle<T, E, I>
where E: Sync, I: Sync, T: Sync,

§

impl<T, E, I> Unpin for Cycle<T, E, I>
where E: Unpin, I: Unpin, T: Unpin,

§

impl<T, E, I> UnsafeUnpin for Cycle<T, E, I>

§

impl<T, E, I> UnwindSafe for Cycle<T, E, I>
where E: UnwindSafe, I: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.