[][src]Struct rrr::Chart

pub struct Chart { /* fields omitted */ }

A space/memory efficient representation of a chart.

Contains a collection of beats and BPM changes. These are not used by RRR directly.

Implementations

impl Chart[src]

#[must_use]pub fn new(beats: &[Beat], bpm_changes: &[BpmChange]) -> Self[src]

Trait Implementations

impl Clone for Chart[src]

impl Debug for Chart[src]

impl Default for Chart[src]

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

impl Eq for Chart[src]

impl From<Chart> for CompiledChart[src]

impl Hash for Chart[src]

impl Ord for Chart[src]

impl PartialEq<Chart> for Chart[src]

impl PartialOrd<Chart> for Chart[src]

impl Serialize for Chart[src]

impl StructuralEq for Chart[src]

impl StructuralPartialEq for Chart[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.