Struct sitewriter::Sitemap[][src]

pub struct Sitemap;

Struct that implements the sitemap generation function.

Implementations

impl Sitemap[src]

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

Generates the sitemap and saves it using the provided writer.

It’s recommended to use Sitemap::into_bytes or Sitemap::into_str if you need a String or a Vec.

pub fn into_bytes(urls: &[UrlEntry]) -> Vec<u8>[src]

Generates the sitemap.

pub fn into_str(urls: &[UrlEntry]) -> Result<String, Utf8Error>[src]

Generates the sitemap returning a string.

Trait Implementations

impl Debug for Sitemap[src]

Auto Trait Implementations

impl RefUnwindSafe for Sitemap

impl Send for Sitemap

impl Sync for Sitemap

impl Unpin for Sitemap

impl UnwindSafe for Sitemap

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.