[][src]Struct meli::conf::accounts::MailboxNode

pub struct MailboxNode {
    pub hash: MailboxHash,
    pub depth: usize,
    pub indentation: u32,
    pub has_sibling: bool,
    pub children: Vec<MailboxNode>,
}

Fields

hash: MailboxHashdepth: usizeindentation: u32has_sibling: boolchildren: Vec<MailboxNode>

Trait Implementations

impl Clone for MailboxNode[src]

impl Debug for MailboxNode[src]

impl Default for MailboxNode[src]

impl Serialize for MailboxNode[src]

Auto Trait Implementations

impl RefUnwindSafe for MailboxNode

impl Send for MailboxNode

impl Sync for MailboxNode

impl Unpin for MailboxNode

impl UnwindSafe for MailboxNode

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> From<T> for T[src]

impl<T> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]