pub struct SitemapVideo {
pub content_loc: Option<Url>,
pub player_loc: Option<Url>,
pub thumbnail_loc: Option<Url>,
pub title: Option<String>,
pub description: Option<String>,
pub duration: Option<u32>,
}Expand description
Video in sitemap
Fields§
§content_loc: Option<Url>Video content URL
player_loc: Option<Url>Video player URL
thumbnail_loc: Option<Url>Video thumbnail URL
title: Option<String>Video title
description: Option<String>Video description
duration: Option<u32>Video duration in seconds
Trait Implementations§
Source§impl Clone for SitemapVideo
impl Clone for SitemapVideo
Source§fn clone(&self) -> SitemapVideo
fn clone(&self) -> SitemapVideo
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 moreAuto Trait Implementations§
impl Freeze for SitemapVideo
impl RefUnwindSafe for SitemapVideo
impl Send for SitemapVideo
impl Sync for SitemapVideo
impl Unpin for SitemapVideo
impl UnwindSafe for SitemapVideo
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