[][src]Struct druid::widget::TabsState

pub struct TabsState<TP: TabsPolicy> { /* fields omitted */ }

This is the current state of the tabs widget as a whole. This expands the input data to include a policy that determines how tabs are derived, and the index of the currently selected tab

Implementations

impl<TP: TabsPolicy> TabsState<TP>[src]

pub const inner: inner[src]

Lens for the corresponding field

pub const selected: selected[src]

Lens for the corresponding field

pub const policy: policy[src]

Lens for the corresponding field

impl<TP: TabsPolicy> TabsState<TP>[src]

pub fn new(inner: TP::Input, selected: usize, policy: TP) -> Self[src]

Create a new TabsState

Trait Implementations

impl<TP: Clone + TabsPolicy> Clone for TabsState<TP> where
    TP::Input: Clone
[src]

impl<TP: TabsPolicy + Data> Data for TabsState<TP>[src]

Auto Trait Implementations

impl<TP> RefUnwindSafe for TabsState<TP> where
    TP: RefUnwindSafe,
    <TP as TabsPolicy>::Input: RefUnwindSafe
[src]

impl<TP> Send for TabsState<TP> where
    TP: Send,
    <TP as TabsPolicy>::Input: Send
[src]

impl<TP> Sync for TabsState<TP> where
    TP: Sync,
    <TP as TabsPolicy>::Input: Sync
[src]

impl<TP> Unpin for TabsState<TP> where
    TP: Unpin,
    <TP as TabsPolicy>::Input: Unpin
[src]

impl<TP> UnwindSafe for TabsState<TP> where
    TP: UnwindSafe,
    <TP as TabsPolicy>::Input: UnwindSafe
[src]

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> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

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.