pub struct TableColumnConfig {
pub include: Vec<String>,
pub exclude: Vec<String>,
pub mask: Vec<String>,
}Expand description
Column configuration for a specific table
Fields§
§include: Vec<String>Columns to include (if empty, include all)
exclude: Vec<String>Columns to exclude
mask: Vec<String>Columns to mask with “REDACTED”
Trait Implementations§
Source§impl Clone for TableColumnConfig
impl Clone for TableColumnConfig
Source§fn clone(&self) -> TableColumnConfig
fn clone(&self) -> TableColumnConfig
Returns a duplicate 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 Debug for TableColumnConfig
impl Debug for TableColumnConfig
Source§impl<'de> Deserialize<'de> for TableColumnConfig
impl<'de> Deserialize<'de> for TableColumnConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TableColumnConfig
impl RefUnwindSafe for TableColumnConfig
impl Send for TableColumnConfig
impl Sync for TableColumnConfig
impl Unpin for TableColumnConfig
impl UnsafeUnpin for TableColumnConfig
impl UnwindSafe for TableColumnConfig
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