[][src]Struct imgui::TabBar

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

Builder for a tab bar.

Implementations

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

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

pub fn reorderable(self, value: bool) -> Self[src]

Enable/Disable the reorderable property

Disabled by default

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

Set the flags of the tab bar.

Flags are empty by default

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

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

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

Note: the closure is not called if no tabbar content is visible

Auto Trait Implementations

impl<'a> RefUnwindSafe for TabBar<'a>

impl<'a> Send for TabBar<'a>

impl<'a> Sync for TabBar<'a>

impl<'a> Unpin for TabBar<'a>

impl<'a> UnwindSafe for TabBar<'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.