pub struct ColumnConfig {
pub slug: String,
pub name: String,
pub order: u32,
pub wip_limit: Option<u32>,
pub hidden: Option<bool>,
}Fields§
§slug: String§name: StringLegacy field: column names are always derived from the slug via
slug_to_name at load time. Kept only for backwards-compatible
deserialization of existing config.toml files; never written back
to disk (skip_serializing).
order: u32§wip_limit: Option<u32>Trait Implementations§
Source§impl Clone for ColumnConfig
impl Clone for ColumnConfig
Source§fn clone(&self) -> ColumnConfig
fn clone(&self) -> ColumnConfig
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 ColumnConfig
impl Debug for ColumnConfig
Source§impl<'de> Deserialize<'de> for ColumnConfig
impl<'de> Deserialize<'de> for ColumnConfig
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 ColumnConfig
impl RefUnwindSafe for ColumnConfig
impl Send for ColumnConfig
impl Sync for ColumnConfig
impl Unpin for ColumnConfig
impl UnsafeUnpin for ColumnConfig
impl UnwindSafe for ColumnConfig
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