pub struct SitemapUrl {
pub loc: String,
pub lastmod: Option<String>,
pub changefreq: Option<String>,
pub priority: Option<f32>,
}Fields§
§loc: String§lastmod: Option<String>§changefreq: Option<String>§priority: Option<f32>Trait Implementations§
Source§impl Clone for SitemapUrl
impl Clone for SitemapUrl
Source§fn clone(&self) -> SitemapUrl
fn clone(&self) -> SitemapUrl
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 SitemapUrl
impl RefUnwindSafe for SitemapUrl
impl Send for SitemapUrl
impl Sync for SitemapUrl
impl Unpin for SitemapUrl
impl UnsafeUnpin for SitemapUrl
impl UnwindSafe for SitemapUrl
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