pub struct StoreFeatures {Show 19 fields
pub has_free_tier: Option<bool>,
pub has_trial: Option<bool>,
pub has_subscription: Option<bool>,
pub has_hires: Option<bool>,
pub has_download: Option<bool>,
pub has_streaming: Option<bool>,
pub has_radio: Option<bool>,
pub has_playlist: Option<bool>,
pub has_favorites: Option<bool>,
pub has_library: Option<bool>,
pub has_discover: Option<bool>,
pub has_recommendations: Option<bool>,
pub has_personal_radio: Option<bool>,
pub has_instant_mixes: Option<bool>,
pub has_smart_playlists: Option<bool>,
pub has_daily_mixes: Option<bool>,
pub has_weekly_mixes: Option<bool>,
pub has_monthly_mixes: Option<bool>,
pub has_yearly_mixes: Option<bool>,
}Expand description
Store features model containing information about available features
This struct represents the features available in the Qobuz store for a user including free tier, trial, subscription, and various content types.
§Examples
use qobuz_api_rust::models::StoreFeatures;
let store_features = StoreFeatures {
has_free_tier: Some(true),
has_subscription: Some(true),
has_download: Some(true),
..Default::default()
};Fields§
§has_free_tier: Option<bool>Whether the store has a free tier
has_trial: Option<bool>Whether the store has a trial option
has_subscription: Option<bool>Whether the store has a subscription option
has_hires: Option<bool>Whether the store offers high-resolution content
has_download: Option<bool>Whether the store allows downloading
has_streaming: Option<bool>Whether the store allows streaming
has_radio: Option<bool>Whether the store has radio functionality
has_playlist: Option<bool>Whether the store has playlist functionality
has_favorites: Option<bool>Whether the store has favorites functionality
has_library: Option<bool>Whether the store has a library functionality
has_discover: Option<bool>Whether the store has discovery features
has_recommendations: Option<bool>Whether the store has recommendation features
has_personal_radio: Option<bool>Whether the store has personal radio features
has_instant_mixes: Option<bool>Whether the store has instant mixes
has_smart_playlists: Option<bool>Whether the store has smart playlists
has_daily_mixes: Option<bool>Whether the store has daily mixes
has_weekly_mixes: Option<bool>Whether the store has weekly mixes
has_monthly_mixes: Option<bool>Whether the store has monthly mixes
has_yearly_mixes: Option<bool>Whether the store has yearly mixes
Trait Implementations§
Source§impl Clone for StoreFeatures
impl Clone for StoreFeatures
Source§fn clone(&self) -> StoreFeatures
fn clone(&self) -> StoreFeatures
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more