Struct sitewriter::Sitemap[][src]

pub struct Sitemap<'a> {
    pub urls: Vec<Url<'a>>,
}

Struct to hold the sitemap information.

Fields

urls: Vec<Url<'a>>

The list of url entries.

Implementations

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

pub fn new() -> Self[src]

Create a new sitemap.

pub fn generate<T>(&self, inner_writer: T) -> T where
    T: Write
[src]

Generates the sitemap using the provided writer.

It's recommended to use Sitemap::into_bytes() or Sitemap::into_str()

pub fn into_bytes(self) -> Vec<u8>[src]

Generates the sitemap.

pub fn into_str(self) -> String[src]

Generates the sitemap returning a string.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a> UnwindSafe for Sitemap<'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.