pub struct PageResponse {Show 15 fields
pub id: String,
pub created_time: OffsetDateTime,
pub last_edited_time: OffsetDateTime,
pub created_by: User,
pub last_edited_by: User,
pub cover: Option<File>,
pub icon: Option<Icon>,
pub parent: Parent,
pub archived: bool,
pub properties: HashMap<String, PageProperty>,
pub url: String,
pub public_url: Option<String>,
pub developer_survey: Option<String>,
pub request_id: Option<String>,
pub in_trash: bool,
}
Expand description
Fields§
§id: String
§created_time: OffsetDateTime
§last_edited_time: OffsetDateTime
§created_by: User
§last_edited_by: User
§cover: Option<File>
§icon: Option<Icon>
§parent: Parent
§archived: bool
§properties: HashMap<String, PageProperty>
§url: String
§public_url: Option<String>
§developer_survey: Option<String>
§request_id: Option<String>
§in_trash: bool
Trait Implementations§
Source§impl Clone for PageResponse
impl Clone for PageResponse
Source§fn clone(&self) -> PageResponse
fn clone(&self) -> PageResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PageResponse
impl Debug for PageResponse
Source§impl<'de> Deserialize<'de> for PageResponse
impl<'de> Deserialize<'de> for PageResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PageResponse
impl RefUnwindSafe for PageResponse
impl Send for PageResponse
impl Sync for PageResponse
impl Unpin for PageResponse
impl UnwindSafe for PageResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more