pub struct RecommendationSeedObject {
pub after_filtering_size: usize,
pub after_relinking_size: usize,
pub href: String,
pub id: String,
pub initial_pool_size: usize,
pub _type: String,
}Expand description
Fields§
§after_filtering_size: usizeThe number of tracks available after min_* and max_* filters have been applied.
after_relinking_size: usizeThe number of tracks available after relinking for regional availability.
href: StringA link to the full track or artist data for this seed. For tracks this will be a link to a Track Object. For artists a link to an Artist Object. For genre seeds, this value will be null.
id: StringThe id used to select this seed. This will be the same as the string used in the seed_artists, seed_tracks or seed_genres parameter.
initial_pool_size: usizeThe number of recommended tracks available for this seed.
_type: StringThe entity type of this seed. One of artist, track or genre.
Trait Implementations§
Source§impl Clone for RecommendationSeedObject
impl Clone for RecommendationSeedObject
Source§fn clone(&self) -> RecommendationSeedObject
fn clone(&self) -> RecommendationSeedObject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecommendationSeedObject
impl Debug for RecommendationSeedObject
Source§impl<'de> Deserialize<'de> for RecommendationSeedObject
impl<'de> Deserialize<'de> for RecommendationSeedObject
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RecommendationSeedObject
impl PartialEq for RecommendationSeedObject
Source§impl Serialize for RecommendationSeedObject
impl Serialize for RecommendationSeedObject
impl Eq for RecommendationSeedObject
impl StructuralPartialEq for RecommendationSeedObject
Auto Trait Implementations§
impl Freeze for RecommendationSeedObject
impl RefUnwindSafe for RecommendationSeedObject
impl Send for RecommendationSeedObject
impl Sync for RecommendationSeedObject
impl Unpin for RecommendationSeedObject
impl UnwindSafe for RecommendationSeedObject
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.