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