Skip to main content

SettingsRows

Struct SettingsRows 

Source
pub struct SettingsRows<'a, Msg> { /* private fields */ }
Expand description

Adds headings and rows to a SettingsList inside SettingsList::show.

Implementations§

Source§

impl<Msg: 'static> SettingsRows<'_, Msg>

Source

pub fn env(&self) -> &Env

The environment the list is drawn in: the active theme, language and icons, for rows that show them.

Source

pub fn heading(&mut self, title: impl Into<String>)

Adds a group heading.

Source

pub fn row( &mut self, row: SettingRow<Msg>, control: impl FnOnce(&mut View<'_, Msg>), )

Adds row with the one control built by control (a switch, a select, a segmented control, a value text). Give the control no focus handling of its own: the list takes focus as one control and passes keys to the selected row.

Auto Trait Implementations§

§

impl<'a, Msg> !RefUnwindSafe for SettingsRows<'a, Msg>

§

impl<'a, Msg> !Send for SettingsRows<'a, Msg>

§

impl<'a, Msg> !Sync for SettingsRows<'a, Msg>

§

impl<'a, Msg> !UnwindSafe for SettingsRows<'a, Msg>

§

impl<'a, Msg> Freeze for SettingsRows<'a, Msg>
where Vec<Entry<Msg>>: Freeze, Vec<Node<Msg>>: Freeze, &'a IdleScope<Msg>: Freeze,

§

impl<'a, Msg> Unpin for SettingsRows<'a, Msg>
where Vec<Entry<Msg>>: Unpin, Vec<Node<Msg>>: Unpin, &'a IdleScope<Msg>: Unpin,

§

impl<'a, Msg> UnsafeUnpin for SettingsRows<'a, Msg>
where Vec<Entry<Msg>>: UnsafeUnpin, Vec<Node<Msg>>: UnsafeUnpin, &'a IdleScope<Msg>: UnsafeUnpin,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.