[][src]Struct confluence::Page

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: i64

The id of the page

space: String

The key of the space that this page belongs to

parent_id: i64

The id of the parent page

title: String

The title of the page

url: String

The url to view this page online

version: i32

The version number of this page

content: String

The page content

created: DateTime<Utc>

Timestamp page was created

creator: String

Username of the creator

modified: DateTime<Utc>

Timestamp page was modified

modifier: String

Username of the page's last modifier

home_page: bool

Whether or not this page is the space's homepage

content_status: String

Status of the page (eg. current or deleted)

current: bool

Whether the page is current and not deleted

Trait Implementations

impl FromElement for Page[src]

impl From<Page> for UpdatePage[src]

impl Debug for Page[src]

Auto Trait Implementations

impl Send for Page

impl Sync for Page

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err