pub struct PodcastLocation {
pub name: String,
pub geo: Option<String>,
pub osm: Option<String>,
}Expand description
Podcast 2.0 geographic location
Location information for a podcast or episode.
Namespace: https://podcastindex.org/namespace/1.0
Fields§
§name: StringHuman-readable location name (text content)
geo: Option<String>Geographic coordinates (geo attribute): “geo:37.786971,-122.399677”
osm: Option<String>OpenStreetMap reference (osm attribute): “R113314”
Trait Implementations§
Source§impl Clone for PodcastLocation
impl Clone for PodcastLocation
Source§fn clone(&self) -> PodcastLocation
fn clone(&self) -> PodcastLocation
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 PodcastLocation
impl Debug for PodcastLocation
Source§impl Default for PodcastLocation
impl Default for PodcastLocation
Source§fn default() -> PodcastLocation
fn default() -> PodcastLocation
Returns the “default value” for a type. Read more
Source§impl PartialEq for PodcastLocation
impl PartialEq for PodcastLocation
impl Eq for PodcastLocation
impl StructuralPartialEq for PodcastLocation
Auto Trait Implementations§
impl Freeze for PodcastLocation
impl RefUnwindSafe for PodcastLocation
impl Send for PodcastLocation
impl Sync for PodcastLocation
impl Unpin for PodcastLocation
impl UnsafeUnpin for PodcastLocation
impl UnwindSafe for PodcastLocation
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