[][src]Struct rusoto_connect::HierarchyStructure

pub struct HierarchyStructure {
    pub level_five: Option<HierarchyLevel>,
    pub level_four: Option<HierarchyLevel>,
    pub level_one: Option<HierarchyLevel>,
    pub level_three: Option<HierarchyLevel>,
    pub level_two: Option<HierarchyLevel>,
}

Contains information about a hierarchy structure.

Fields

level_five: Option<HierarchyLevel>

Information about level five.

level_four: Option<HierarchyLevel>

Information about level four.

level_one: Option<HierarchyLevel>

Information about level one.

level_three: Option<HierarchyLevel>

Information about level three.

level_two: Option<HierarchyLevel>

Information about level two.

Trait Implementations

impl Clone for HierarchyStructure[src]

impl Debug for HierarchyStructure[src]

impl Default for HierarchyStructure[src]

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

impl PartialEq<HierarchyStructure> for HierarchyStructure[src]

impl StructuralPartialEq for HierarchyStructure[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.