pub struct DefaultCellsSchema<T: ?Sized>(/* private fields */);
Expand description
CellsSchema
implementation that use Cells
.
Trait Implementations§
Source§impl<T: Cells + ?Sized> CellsSchema for DefaultCellsSchema<T>
impl<T: Cells + ?Sized> CellsSchema for DefaultCellsSchema<T>
type Source = T
Source§fn fmt(&self, f: &mut CellsFormatter<'_, '_, Self::Source>)
fn fmt(&self, f: &mut CellsFormatter<'_, '_, Self::Source>)
Define column information. see
CellsFormatter
for details.Source§impl<T: Clone + ?Sized> Clone for DefaultCellsSchema<T>
impl<T: Clone + ?Sized> Clone for DefaultCellsSchema<T>
Source§fn clone(&self) -> DefaultCellsSchema<T>
fn clone(&self) -> DefaultCellsSchema<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: ?Sized> Default for DefaultCellsSchema<T>
impl<T: ?Sized> Default for DefaultCellsSchema<T>
impl<T: Copy + ?Sized> Copy for DefaultCellsSchema<T>
Auto Trait Implementations§
impl<T> Freeze for DefaultCellsSchema<T>where
T: ?Sized,
impl<T> RefUnwindSafe for DefaultCellsSchema<T>where
T: RefUnwindSafe + ?Sized,
impl<T> Send for DefaultCellsSchema<T>
impl<T> Sync for DefaultCellsSchema<T>
impl<T> Unpin for DefaultCellsSchema<T>
impl<T> UnwindSafe for DefaultCellsSchema<T>where
T: UnwindSafe + ?Sized,
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