[][src]Struct kurobako::time::ElapsedSeconds

pub struct ElapsedSeconds(_);

Methods

impl ElapsedSeconds[src]

pub fn new(seconds: f64) -> Result<Self>[src]

pub const fn zero() -> Self[src]

pub const fn get(&self) -> f64[src]

pub fn to_duration(&self) -> Duration[src]

pub fn time<F, T>(f: F) -> (T, Self) where
    F: FnOnce() -> T, 
[src]

Trait Implementations

impl From<Duration> for ElapsedSeconds[src]

impl Clone for ElapsedSeconds[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for ElapsedSeconds[src]

impl Copy for ElapsedSeconds[src]

impl Debug for ElapsedSeconds[src]

impl<'de> Deserialize<'de> for ElapsedSeconds[src]

impl Serialize for ElapsedSeconds[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,