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