pub struct OnenoteSection {
pub is_default: bool,
pub links: SectionLinks,
pub pages_url: String,
pub parent_notebook: Notebook,
pub parent_section_group: SectionGroup,
pub pages: Vec<OnenotePage>,
}
Fields§
§is_default: bool
§links: SectionLinks
§pages_url: String
§parent_notebook: Notebook
§parent_section_group: SectionGroup
§pages: Vec<OnenotePage>
Trait Implementations§
Source§impl Clone for OnenoteSection
impl Clone for OnenoteSection
Source§fn clone(&self) -> OnenoteSection
fn clone(&self) -> OnenoteSection
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 OnenoteSection
impl Debug for OnenoteSection
Source§impl<'de> Deserialize<'de> for OnenoteSection
impl<'de> Deserialize<'de> for OnenoteSection
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 OnenoteSection
impl PartialEq for OnenoteSection
Source§impl Serialize for OnenoteSection
impl Serialize for OnenoteSection
impl Eq for OnenoteSection
impl StructuralPartialEq for OnenoteSection
Auto Trait Implementations§
impl Freeze for OnenoteSection
impl RefUnwindSafe for OnenoteSection
impl Send for OnenoteSection
impl Sync for OnenoteSection
impl Unpin for OnenoteSection
impl UnwindSafe for OnenoteSection
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