pub enum Period {
Overall,
Week,
Month,
ThreeMonth,
SixMonth,
TwelveMonth,
}Expand description
Period options for Last.fm time range filters
These periods define the time range for calculating top tracks.
Variants§
Overall
All-time top tracks (no time limit)
Week
Top tracks from the last 7 days
Month
Top tracks from the last month (30 days)
ThreeMonth
Top tracks from the last 3 months (90 days)
SixMonth
Top tracks from the last 6 months (180 days)
TwelveMonth
Top tracks from the last 12 months (365 days)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Period
impl RefUnwindSafe for Period
impl Send for Period
impl Sync for Period
impl Unpin for Period
impl UnwindSafe for Period
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more