[][src]Struct imgui::TabItem

pub struct TabItem<'a> { /* fields omitted */ }

Implementations

impl<'a> TabItem<'a>[src]

pub fn new(name: &'a ImStr) -> Self[src]

pub fn opened(self, opened: &'a mut bool) -> Self[src]

Will open or close the tab.

True to display the tab. Tab item is visible by default.

pub fn flags(self, flags: TabItemFlags) -> Self[src]

Set the flags of the tab item.

Flags are empty by default

#[must_use]pub fn begin(self, ui: &Ui<'_>) -> Option<TabItemToken>[src]

pub fn build<F: FnOnce()>(self, ui: &Ui<'_>, f: F)[src]

Creates a tab item and runs a closure to construct the contents.

Note: the closure is not called if the tab item is not selected

Auto Trait Implementations

impl<'a> RefUnwindSafe for TabItem<'a>

impl<'a> Send for TabItem<'a>

impl<'a> Sync for TabItem<'a>

impl<'a> Unpin for TabItem<'a>

impl<'a> !UnwindSafe for TabItem<'a>

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.