Struct clef::Duration[][src]

pub struct Duration { /* fields omitted */ }

Implementations

impl Duration[src]

pub fn new(denominator: u16) -> Duration[src]

Contracts

Pre-condition: denominator must be a power of 2

  • math :: is_power_of_2(denominator as u32)

pub fn new_with_dots(denominator: u16, dots: u8) -> Duration[src]

Contracts

Pre-condition: denominator must be a power of 2

  • math :: is_power_of_2(denominator as u32)

Pre-condition: dots must be no more than 4

  • dots <= 4

pub fn denominator(&self) -> u16[src]

pub fn dots(&self) -> u8[src]

pub fn to_fraction(&self) -> Fraction[src]

Trait Implementations

impl Clone for Duration[src]

impl Copy for Duration[src]

impl Debug for Duration[src]

impl PartialEq<Duration> for Duration[src]

impl StructuralPartialEq for Duration[src]

impl TryFrom<Fraction> for Duration[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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.