[][src]Struct imgui::TreeNodeToken

#[must_use]pub struct TreeNodeToken { /* fields omitted */ }

Tracks a tree node that must be popped by calling .pop().

If TreeNodeFlags::NO_TREE_PUSH_ON_OPEN was used when this token was created, calling .pop() is not mandatory and is a no-op.

Implementations

impl TreeNodeToken[src]

pub fn pop(self, _: &Ui<'_>)[src]

Pops a tree node

Trait Implementations

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

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

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.