Struct plot_interface::dependency::image::Delay
[−]pub struct Delay { /* private fields */ }
Expand description
The delay of a frame relative to the previous one.
Implementations
impl Delay
impl Delay
pub fn from_numer_denom_ms(numerator: u32, denominator: u32) -> Delay
pub fn from_numer_denom_ms(numerator: u32, denominator: u32) -> Delay
Create a delay from a ratio of milliseconds.
Examples
use image::Delay;
let delay_10ms = Delay::from_numer_denom_ms(10, 1);
pub fn from_saturating_duration(duration: Duration) -> Delay
pub fn from_saturating_duration(duration: Duration) -> Delay
Convert from a duration, clamped between 0 and an implemented defined maximum.
The maximum is at least i32::MAX
milliseconds. It should be noted that the accuracy of
the result may be relative and very large delays have a coarse resolution.
Examples
use std::time::Duration;
use image::Delay;
let duration = Duration::from_millis(20);
let delay = Delay::from_saturating_duration(duration);
pub fn numer_denom_ms(self) -> (u32, u32)
pub fn numer_denom_ms(self) -> (u32, u32)
The numerator and denominator of the delay in milliseconds.
This is guaranteed to be an exact conversion if the Delay
was previously created with the
from_numer_denom_ms
constructor.
Trait Implementations
impl PartialOrd<Delay> for Delay
impl PartialOrd<Delay> for Delay
fn partial_cmp(&self, other: &Delay) -> Option<Ordering>
fn partial_cmp(&self, other: &Delay) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for Delay
impl Eq for Delay
impl StructuralEq for Delay
impl StructuralPartialEq for Delay
Auto Trait Implementations
impl RefUnwindSafe for Delay
impl Send for Delay
impl Sync for Delay
impl Unpin for Delay
impl UnwindSafe for Delay
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
fn into2(self) -> Target
fn into2(self) -> Target
Performs the conversion.
impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
sourcefn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.