[][src]Struct aspotify::model::Section

pub struct Section {
    pub interval: TimeInterval,
    pub loudness: f64,
    pub tempo: f64,
    pub tempo_confidence: f64,
    pub key: Option<u32>,
    pub key_confidence: f64,
    pub mode: Option<Mode>,
    pub mode_confidence: f64,
    pub time_signature: u32,
    pub time_signature_confidence: f64,
}

A section of a track.

See here for more information.

Fields

interval: TimeInterval

The interval of the section.

loudness: f64tempo: f64tempo_confidence: f64key: Option<u32>key_confidence: f64mode: Option<Mode>mode_confidence: f64time_signature: u32time_signature_confidence: f64

Trait Implementations

impl Clone for Section[src]

impl Debug for Section[src]

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

impl PartialEq<Section> for Section[src]

impl Serialize for Section[src]

impl StructuralPartialEq for Section[src]

Auto Trait Implementations

impl RefUnwindSafe for Section

impl Send for Section

impl Sync for Section

impl Unpin for Section

impl UnwindSafe for Section

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: 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.

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