pub struct Episode {
pub id: String,
pub title: String,
pub content: String,
pub status: String,
pub post_url: String,
pub player_url: String,
pub publish_time: String,
pub created_at: String,
pub duration: u64,
pub download_url: String,
}Expand description
Represents a podcast episode.
Fields§
§id: StringUnique identifier for the episode
title: StringEpisode title
content: StringEpisode description or show notes
status: StringPublication status (e.g., “published”, “draft”)
post_url: StringURL to the episode page
player_url: StringURL to play the episode
publish_time: StringWhen the episode was published
created_at: StringWhen the episode was created
duration: u64Duration in seconds
download_url: StringURL to download the episode audio
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Episode
impl<'de> Deserialize<'de> for Episode
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 Episode
impl RefUnwindSafe for Episode
impl Send for Episode
impl Sync for Episode
impl Unpin for Episode
impl UnwindSafe for Episode
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