tabled

Struct ModifyList

Source
pub struct ModifyList<O, S> { /* private fields */ }
Expand description

This is a container of CellOptions which are applied to a set Object.

Implementations§

Source§

impl<O, M1> ModifyList<O, M1>
where O: Object,

Source

pub fn with<M2>(self, s: M2) -> ModifyList<O, CellSettingsList<M1, M2>>

With a generic function which stores a CellOption.

IMPORTANT: The function doesn’t changes a Table. Table will be changed only after passing Modify object to Table::with.

Trait Implementations§

Source§

impl<O: Debug, S: Debug> Debug for ModifyList<O, S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<O, M, R> TableOption<R> for ModifyList<O, M>
where O: Object, M: CellOption<R>, R: Records,

Source§

fn change(&mut self, table: &mut Table<R>)

The function modifies a Grid object.

Auto Trait Implementations§

§

impl<O, S> Freeze for ModifyList<O, S>
where O: Freeze, S: Freeze,

§

impl<O, S> RefUnwindSafe for ModifyList<O, S>

§

impl<O, S> Send for ModifyList<O, S>
where O: Send, S: Send,

§

impl<O, S> Sync for ModifyList<O, S>
where O: Sync, S: Sync,

§

impl<O, S> Unpin for ModifyList<O, S>
where O: Unpin, S: Unpin,

§

impl<O, S> UnwindSafe for ModifyList<O, S>
where O: UnwindSafe, S: UnwindSafe,

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

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

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.