Struct persichetti::primitives::CompoundInterval[][src]

pub struct CompoundInterval { /* fields omitted */ }

A compound interval represents an Interval that may span more than one octave.

Implementations

impl CompoundInterval[src]

pub fn new(
    size: IntervalSize,
    quality: IntervalQuality,
    compound_octaves: usize
) -> Result<Self, IntervalError>
[src]

pub fn from_interval(interval: Interval, compound_octaves: usize) -> Self[src]

pub fn from_str(input: &str) -> Result<Self, IntervalError>[src]

Instantiate using the same shorthand as a normal Interval documented in crate::primitives, but using an additional octave indicator.

pub fn interval(&self) -> &Interval[src]

pub fn compound_octaves(&self) -> usize[src]

Trait Implementations

impl Clone for CompoundInterval[src]

impl Debug for CompoundInterval[src]

impl Display for CompoundInterval[src]

impl Eq for CompoundInterval[src]

impl Hash for CompoundInterval[src]

impl PartialEq<CompoundInterval> for CompoundInterval[src]

impl StructuralEq for CompoundInterval[src]

impl StructuralPartialEq for CompoundInterval[src]

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> ToString for T where
    T: Display + ?Sized
[src]

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.