pub struct NotionPage {
pub id: String,
pub properties: HashMap<String, NotionPropertyValue>,
pub url: String,
pub created_time: String,
pub created_by: Value,
pub last_edited_time: String,
pub last_edited_by: Value,
pub archived: bool,
}
Fields§
§id: String
§properties: HashMap<String, NotionPropertyValue>
§url: String
§created_time: String
§created_by: Value
§last_edited_time: String
§last_edited_by: Value
§archived: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NotionPage
impl RefUnwindSafe for NotionPage
impl Send for NotionPage
impl Sync for NotionPage
impl Unpin for NotionPage
impl UnwindSafe for NotionPage
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