Struct druid::widget::TabsState

source ·
pub struct TabsState<TP: TabsPolicy> { /* private fields */ }
Expand description

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§

source§

impl<TP: TabsPolicy> TabsState<TP>

source

pub const inner: inner<TP> = _

Lens for the corresponding field.

source

pub const selected: selected<TP> = _

Lens for the corresponding field.

source

pub const policy: policy<TP> = _

Lens for the corresponding field.

source§

impl<TP: TabsPolicy> TabsState<TP>

source

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

Create a new TabsState

Trait Implementations§

source§

impl<TP: Clone + TabsPolicy> Clone for TabsState<TP>where TP::Input: Clone,

source§

fn clone(&self) -> TabsState<TP>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<TP: TabsPolicy + Data> Data for TabsState<TP>

source§

fn same(&self, other: &Self) -> bool

Determine whether two values are the same. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> RoundFrom<T> for T

§

fn round_from(x: T) -> T

Performs the conversion.
§

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

§

fn round_into(self) -> U

Performs the conversion.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more