[][src]Struct graph_rs_types::entitytypes::SectionGroup

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: Stringsection_groups_url: Stringparent_notebook: Notebookparent_section_group: Box<SectionGroup>sections: Vec<OnenoteSection>section_groups: Vec<SectionGroup>

Trait Implementations

impl Clone for SectionGroup[src]

impl Eq for SectionGroup[src]

impl PartialEq<SectionGroup> for SectionGroup[src]

impl Debug for SectionGroup[src]

impl Serialize for SectionGroup[src]

impl<'de> Deserialize<'de> for SectionGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]