Struct confluence::Page [] [src]

pub struct Page {
    pub id: i64,
    pub space: String,
    pub parent_id: i64,
    pub title: String,
    pub url: String,
    pub version: i32,
    pub content: String,
    pub created: DateTime<UTC>,
    pub creator: String,
    pub modified: DateTime<UTC>,
    pub modifier: String,
    pub home_page: bool,
    pub content_status: String,
    pub current: bool,
}
[]

Page.

Fields

id

The id of the page

space

The key of the space that this page belongs to

parent_id

The id of the parent page

title

The title of the page

url

The url to view this page online

version

The version number of this page

content

The page content

created

Timestamp page was created

creator

Username of the creator

modified

Timestamp page was modified

modifier

Username of the page's last modifier

home_page

Whether or not this page is the space's homepage

content_status

Status of the page (eg. current or deleted)

current

Whether the page is current and not deleted

Trait Implementations

impl FromElement for Page

fn from_element(element: Element) -> Result<Page>

Derived Implementations

impl Debug for Page

fn fmt(&self, __arg_0: &mut Formatter) -> Result