pub enum TaskLedgerDisplay {
Auto,
Collapsed,
Expanded,
Open,
}Variants§
Auto
Expand the rows when the state is terminal, collapse them otherwise.
Collapsed
Wrap the rows in a closed <details> fold.
Expanded
Render the rows directly with no fold (required for the final
pre-closeout state; visible-lint forbids a <details> wrapper there).
Open
Wrap the rows in an open <details open> fold — the toggle stays, but
the ledger is visible by default. Used for the first Execution State so
the full plan is visible on load while remaining collapsible.
Trait Implementations§
Source§impl Clone for TaskLedgerDisplay
impl Clone for TaskLedgerDisplay
Source§fn clone(&self) -> TaskLedgerDisplay
fn clone(&self) -> TaskLedgerDisplay
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 moreimpl Copy for TaskLedgerDisplay
Source§impl Debug for TaskLedgerDisplay
impl Debug for TaskLedgerDisplay
impl Eq for TaskLedgerDisplay
Source§impl PartialEq for TaskLedgerDisplay
impl PartialEq for TaskLedgerDisplay
Source§fn eq(&self, other: &TaskLedgerDisplay) -> bool
fn eq(&self, other: &TaskLedgerDisplay) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TaskLedgerDisplay
impl Serialize for TaskLedgerDisplay
impl StructuralPartialEq for TaskLedgerDisplay
Source§impl ValueEnum for TaskLedgerDisplay
impl ValueEnum for TaskLedgerDisplay
Auto Trait Implementations§
impl Freeze for TaskLedgerDisplay
impl RefUnwindSafe for TaskLedgerDisplay
impl Send for TaskLedgerDisplay
impl Sync for TaskLedgerDisplay
impl Unpin for TaskLedgerDisplay
impl UnsafeUnpin for TaskLedgerDisplay
impl UnwindSafe for TaskLedgerDisplay
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.