pub enum CellContent {
Text(WidgetText),
Widget(Arc<dyn Fn(&mut Ui) + Send + Sync>),
}Variants§
Auto Trait Implementations§
impl Freeze for CellContent
impl !RefUnwindSafe for CellContent
impl Send for CellContent
impl Sync for CellContent
impl Unpin for CellContent
impl UnsafeUnpin for CellContent
impl !UnwindSafe for CellContent
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