[][src]Struct sitewriter::Sitemap

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

Struct to hold the sitemap information.

Fields

urls: Vec<Url>

Implementations

impl Sitemap[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) -> Cow<'_, [u8]>[src]

Generates the sitemap.

pub fn into_str(&self) -> Cow<'_, str>[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.