Trait mz_persist_types::columnar::sealed::ColumnMut
source · pub trait ColumnMut<Cfg>:
Sized
+ Send
+ Sync {
// Required methods
fn new(cfg: &Cfg) -> Self;
fn cfg(&self) -> &Cfg;
}
Expand description
A common trait implemented by all Data::Mut
types.
Required Methods§
sourcefn new(cfg: &Cfg) -> Self
fn new(cfg: &Cfg) -> Self
Construct an empty instance of this type with the given configuration.
sourcefn cfg(&self) -> &Cfg
fn cfg(&self) -> &Cfg
Returns the super::ColumnCfg for this column.
Object Safety§
This trait is not object safe.