[][src]Struct rustfm_scrobble::ScrobbleBatch

pub struct ScrobbleBatch(_);

A batch of Scrobbles to be submitted to Last.fm together.

Methods

impl ScrobbleBatch[src]

pub fn new() -> ScrobbleBatch[src]

Creates a new, empty ScrobbleBatch

pub fn is_empty(&self) -> bool[src]

Returns true if the ScrobbleBatch contains no Scrobbles

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

Returns the number of Scrobbles in the ScrobbleBatch

pub fn iter<'a>(&'a self) -> Iter<'a, Scrobble>[src]

Returns an iterator over the ScrobbleBatch

Trait Implementations

impl From<Vec<Scrobble>> for ScrobbleBatch[src]

impl Clone for ScrobbleBatch[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl IntoIterator for ScrobbleBatch[src]

type Item = Scrobble

The type of the elements being iterated over.

type IntoIter = IntoIter<Scrobble>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a ScrobbleBatch[src]

type Item = &'a Scrobble

The type of the elements being iterated over.

type IntoIter = Iter<'a, Scrobble>

Which kind of iterator are we turning this into?

impl Extend<Scrobble> for ScrobbleBatch[src]

impl Debug for ScrobbleBatch[src]

impl FromIterator<Scrobble> for ScrobbleBatch[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into 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> From for T[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err