pub struct PodcastFollow {
pub url: Url,
pub platform: Option<String>,
}Expand description
Podcast 2.0 follow link
A URL and optional platform for following the podcast.
Namespace: https://podcastindex.org/namespace/1.0
Fields§
§url: UrlFollow URL (url attribute, required)
§Security Warning
This URL comes from untrusted feed input and has NOT been validated for SSRF.
platform: Option<String>Platform name (platform attribute)
Trait Implementations§
Source§impl Clone for PodcastFollow
impl Clone for PodcastFollow
Source§fn clone(&self) -> PodcastFollow
fn clone(&self) -> PodcastFollow
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 PodcastFollow
impl Debug for PodcastFollow
Source§impl Default for PodcastFollow
impl Default for PodcastFollow
Source§fn default() -> PodcastFollow
fn default() -> PodcastFollow
Returns the “default value” for a type. Read more
Source§impl PartialEq for PodcastFollow
impl PartialEq for PodcastFollow
impl Eq for PodcastFollow
impl StructuralPartialEq for PodcastFollow
Auto Trait Implementations§
impl Freeze for PodcastFollow
impl RefUnwindSafe for PodcastFollow
impl Send for PodcastFollow
impl Sync for PodcastFollow
impl Unpin for PodcastFollow
impl UnsafeUnpin for PodcastFollow
impl UnwindSafe for PodcastFollow
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