Struct sitewriter::Url[][src]

pub struct Url<'a> {
    pub loc: &'a str,
    pub lastmod: Option<DateTime<Utc>>,
    pub changefreq: Option<ChangeFreq>,
    pub priority: Option<f32>,
}

A sitemap url entry.

Fields

loc: &'a str

URL of the page.

This URL must begin with the protocol (such as http) and end with a trailing slash, if your web server requires it. This value must be less than 2,048 characters.

lastmod: Option<DateTime<Utc>>

The date of last modification of the file.

changefreq: Option<ChangeFreq>

How frequently the page is likely to change.

priority: Option<f32>

The priority of this URL relative to other URLs on your site. Valid values range from 0.0 to 1.0.

This value does not affect how your pages are compared to pages on other sites—it only lets the search engines know which pages you deem most important for the crawlers.

Implementations

impl<'a> Url<'a>[src]

pub fn new(loc: &'a str) -> Self[src]

Creates a url (sitemap entry) with only the required elements.

Trait Implementations

impl<'a> Debug for Url<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Url<'a>[src]

impl<'a> Send for Url<'a>[src]

impl<'a> Sync for Url<'a>[src]

impl<'a> Unpin for Url<'a>[src]

impl<'a> UnwindSafe for Url<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.