Struct rustfm_scrobble::ScrobbleBatch [] [src]

pub struct ScrobbleBatch(_);

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

Methods

impl ScrobbleBatch
[src]

[src]

Creates a new, empty ScrobbleBatch

[src]

Returns true if the ScrobbleBatch contains no Scrobbles

[src]

Returns the number of Scrobbles in the ScrobbleBatch

[src]

Returns an iterator over the ScrobbleBatch

Trait Implementations

impl FromIterator<Scrobble> for ScrobbleBatch
[src]

[src]

Creates a value from an iterator. Read more

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

[src]

Performs the conversion.

impl IntoIterator for ScrobbleBatch
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl Extend<Scrobble> for ScrobbleBatch
[src]

[src]

Extends a collection with the contents of an iterator. Read more