pub enum Starter {
Standard,
ListsOnly,
Empty,
}Expand description
What to pre-populate a new board with (chosen during wipe init).
Variants§
Standard
Default lists (Backlog/Todo/In Progress/Done) and default labels.
ListsOnly
Default lists, but no labels.
Empty
No lists and no labels - a blank board.
Trait Implementations§
impl Copy for Starter
Source§impl<'de> Deserialize<'de> for Starter
impl<'de> Deserialize<'de> for Starter
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
impl Eq for Starter
impl StructuralPartialEq for Starter
Auto Trait Implementations§
impl Freeze for Starter
impl RefUnwindSafe for Starter
impl Send for Starter
impl Sync for Starter
impl Unpin for Starter
impl UnsafeUnpin for Starter
impl UnwindSafe for Starter
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