pub struct OnenotePage {
pub title: String,
pub created_by_app_id: String,
pub links: PageLinks,
pub content_url: String,
pub content: Vec<u8>,
pub last_modified_date_time: String,
pub level: i32,
pub order: i32,
pub user_tags: Vec<String>,
pub parent_section: OnenoteSection,
pub parent_notebook: Notebook,
}
Fields§
§title: String
§created_by_app_id: String
§links: PageLinks
§content_url: String
§content: Vec<u8>
§last_modified_date_time: String
§level: i32
§order: i32
§parent_section: OnenoteSection
§parent_notebook: Notebook
Trait Implementations§
Source§impl Clone for OnenotePage
impl Clone for OnenotePage
Source§fn clone(&self) -> OnenotePage
fn clone(&self) -> OnenotePage
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 OnenotePage
impl Debug for OnenotePage
Source§impl<'de> Deserialize<'de> for OnenotePage
impl<'de> Deserialize<'de> for OnenotePage
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
Source§impl PartialEq for OnenotePage
impl PartialEq for OnenotePage
Source§impl Serialize for OnenotePage
impl Serialize for OnenotePage
impl Eq for OnenotePage
impl StructuralPartialEq for OnenotePage
Auto Trait Implementations§
impl Freeze for OnenotePage
impl RefUnwindSafe for OnenotePage
impl Send for OnenotePage
impl Sync for OnenotePage
impl Unpin for OnenotePage
impl UnwindSafe for OnenotePage
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