[][src]Struct ftml::PageInfo

pub struct PageInfo<'a> {
    pub title: &'a str,
    pub alt_title: Option<&'a str>,
    pub header: Option<&'a str>,
    pub subheader: Option<&'a str>,
    pub rating: i32,
    pub tags: Vec<&'a str>,
}

Metadata information on the article being rendered.

Fields

title: &'a str

The title of this page.

For SCPs this is "SCP-XXXX".

alt_title: Option<&'a str>

The alternate title of this page.

For SCPs this is its series listing title. If this is None then the main title is used instead.

header: Option<&'a str>

The header of this page, if it's setting one.

For regular pages this is "SCP Foundation". Previously this value was overriden using custom CSS.

subheader: Option<&'a str>

The sub-header of this page, if it's setting one.

For regular pages this is "Secure, Contain, Protect". Previously this value was overriden using custom CSS.

rating: i32

The current rating the page has.

tags: Vec<&'a str>

The current set of tags this page has.

Trait Implementations

impl<'a> Clone for PageInfo<'a>[src]

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

impl<'a> Eq for PageInfo<'a>[src]

impl<'a> PartialEq<PageInfo<'a>> for PageInfo<'a>[src]

impl<'a> StructuralEq for PageInfo<'a>[src]

impl<'a> StructuralPartialEq for PageInfo<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PageInfo<'a>

impl<'a> Send for PageInfo<'a>

impl<'a> Sync for PageInfo<'a>

impl<'a> Unpin for PageInfo<'a>

impl<'a> UnwindSafe for PageInfo<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.