pub struct TuiSettings {
pub confirm_quit: bool,
pub workflow: Vec<String>,
pub hidden_columns: Vec<String>,
pub key_bindings: KeyBindings,
pub markdown: bool,
pub timezone: DisplayTimezone,
}Expand description
Settings required to launch the interactive Kanban view.
Fields§
§confirm_quit: boolWhether to display a confirmation popup upon exit.
workflow: Vec<String>Workflow columns in their configured order.
Workflow columns hidden from the default Kanban display.
key_bindings: KeyBindingsConfigured Kanban key assignments.
markdown: boolRender PBI bodies as Markdown in the details popup.
timezone: DisplayTimezoneTimezone for human-readable timestamps in the details popup.
Trait Implementations§
Source§impl Clone for TuiSettings
impl Clone for TuiSettings
Source§fn clone(&self) -> TuiSettings
fn clone(&self) -> TuiSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TuiSettings
impl Debug for TuiSettings
impl Eq for TuiSettings
Source§impl PartialEq for TuiSettings
impl PartialEq for TuiSettings
impl StructuralPartialEq for TuiSettings
Auto Trait Implementations§
impl Freeze for TuiSettings
impl RefUnwindSafe for TuiSettings
impl Send for TuiSettings
impl Sync for TuiSettings
impl Unpin for TuiSettings
impl UnsafeUnpin for TuiSettings
impl UnwindSafe for TuiSettings
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more