Seconds

Struct Seconds 

Source
pub struct Seconds(pub f64);
Expand description

Unit of time in “Seconds”

Tuple Fields§

§0: f64

Implementations§

Source§

impl Seconds

Source

pub fn new(seconds: f64) -> Self

Source

pub fn as_f32(&self) -> f32

Source

pub fn from_frames(sample_time: Frames, sample_rate: SampleRate) -> Self

Creates a new time in Seconds from Frames and a SampleRate.

Note that this conversion is NOT lossless.

Source

pub fn from_super_frames(super_frame_time: SuperFrames) -> Self

Creates a new time in Seconds from SuperFrames.

Note that this conversion is NOT lossless.

Source

pub fn to_nearest_frame_round(&self, sample_rate: SampleRate) -> Frames

Convert to discrete Frames with the given SampleRate. This will be rounded to the nearest sample.

Note that this conversion is NOT lossless.

If the seconds value is negative, then Frames(0) will be returned instead.

Source

pub fn to_nearest_frame_floor(&self, sample_rate: SampleRate) -> Frames

Convert to discrete Frames with the given SampleRate. This will be floored to the nearest sample.

Note that this conversion is NOT lossless.

If the seconds value is negative, then Frames(0) will be returned instead.

Source

pub fn to_nearest_frame_ceil(&self, sample_rate: SampleRate) -> Frames

Convert to discrete Frames with the given SampleRate. This will be ceil-ed to the nearest sample.

Note that this conversion is NOT lossless.

If the seconds value is negative, then Frames(0) will be returned instead.

Source

pub fn to_sub_frames(&self, sample_rate: SampleRate) -> (Frames, f64)

Convert to discrete Frames given the SampleRate floored to the nearest sample, while also return the fractional sub-sample part.

Note that this conversion is NOT lossless.

If the seconds value is negative, then (Frames(0), 0.0) will be returned instead.

Source

pub fn to_nearest_super_frame_round(&self) -> SuperFrames

Convert to discrete SuperFrames. This will be rounded to the nearest super-frame.

Note that this conversion is NOT lossless.

If the seconds value is negative, then the SuperFrames’s value will be 0.

Source

pub fn to_nearest_super_frame_floor(&self) -> SuperFrames

Convert to discrete SuperFrames. This will be floored to the nearest super-frame.

Note that this conversion is NOT lossless.

If the seconds value is negative, then the SuperFrames’s values will be 0.

Source

pub fn to_nearest_super_frame_ceil(&self) -> SuperFrames

Convert to discrete SuperFrames. This will be ceil-ed to the nearest super-frame.

Note that this conversion is NOT lossless.

If the seconds value is negative, then the SuperFrames’s values will be 0.

Source

pub fn to_sub_super_frames(&self) -> (SuperFrames, f64)

Convert to discrete Frames floored to the nearest super-frame, while also return the fractional sub-super-frame part.

Note that this conversion is NOT lossless.

If the seconds value is negative, then the SuperFrames’s values and the fractional value will both be 0.

Source

pub fn to_musical(&self, bpm: f64) -> MusicalTime

Convert to the corresponding MusicalTime.

Note that this conversion is NOT lossless.

Trait Implementations§

Source§

impl Add for Seconds

Source§

type Output = Seconds

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign for Seconds

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl Clone for Seconds

Source§

fn clone(&self) -> Seconds

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Seconds

Source§

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

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

impl Default for Seconds

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Div for Seconds

Source§

type Output = Seconds

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign for Seconds

Source§

fn div_assign(&mut self, other: Self)

Performs the /= operation. Read more
Source§

impl From<f32> for Seconds

Source§

fn from(s: f32) -> Self

Converts to this type from the input type.
Source§

impl From<i16> for Seconds

Source§

fn from(s: i16) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for Seconds

Source§

fn from(s: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i8> for Seconds

Source§

fn from(s: i8) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for Seconds

Source§

fn from(s: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for Seconds

Source§

fn from(s: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for Seconds

Source§

fn from(s: u8) -> Self

Converts to this type from the input type.
Source§

impl Mul for Seconds

Source§

type Output = Seconds

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign for Seconds

Source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
Source§

impl PartialEq for Seconds

Source§

fn eq(&self, other: &Seconds) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Seconds

Source§

fn partial_cmp(&self, other: &Seconds) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Sub for Seconds

Source§

type Output = Seconds

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign for Seconds

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl Copy for Seconds

Source§

impl StructuralPartialEq for Seconds

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.