pub struct ModifyList<O, S> { /* private fields */ }
Expand description
This is a container of CellOption
s which are applied to a set Object
.
Implementations§
Source§impl<O, M1> ModifyList<O, M1>where
O: Object,
impl<O, M1> ModifyList<O, M1>where
O: Object,
Sourcepub fn with<M2>(self, s: M2) -> ModifyList<O, CellSettingsList<M1, M2>>
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, M, R> TableOption<R> for ModifyList<O, M>
impl<O, M, R> TableOption<R> for ModifyList<O, M>
Auto Trait Implementations§
impl<O, S> Freeze for ModifyList<O, S>
impl<O, S> RefUnwindSafe for ModifyList<O, S>where
O: RefUnwindSafe,
S: RefUnwindSafe,
impl<O, S> Send for ModifyList<O, S>
impl<O, S> Sync for ModifyList<O, S>
impl<O, S> Unpin for ModifyList<O, S>
impl<O, S> UnwindSafe for ModifyList<O, S>where
O: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more