pub struct PodcastListResponse {
pub count: u32,
pub podcasts: Vec<Podcast>,
}Expand description
Response for a list of podcasts.
Fields§
§count: u32Total number of podcasts
podcasts: Vec<Podcast>List of podcasts
Trait Implementations§
Source§impl Debug for PodcastListResponse
impl Debug for PodcastListResponse
Source§impl<'de> Deserialize<'de> for PodcastListResponse
impl<'de> Deserialize<'de> for PodcastListResponse
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
Auto Trait Implementations§
impl Freeze for PodcastListResponse
impl RefUnwindSafe for PodcastListResponse
impl Send for PodcastListResponse
impl Sync for PodcastListResponse
impl Unpin for PodcastListResponse
impl UnwindSafe for PodcastListResponse
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