pub enum ListStyleBias {
Auto,
Including,
SuchAs,
Dash,
Bracketed,
}Expand description
List-style cycle tiebreaker.
When the engine’s {items|join} rotation has multiple candidates that
haven’t been used recently, this dial breaks the tie. Auto (default)
preserves the existing rotation. The other variants nudge toward a
specific opener while still respecting the anti-repeat rule — you cannot
use a profile to force one style every time; that’s what
{items|join:bracketed} is for. The profile sets the prior, not the
verdict.
Variants§
Trait Implementations§
Source§impl Clone for ListStyleBias
impl Clone for ListStyleBias
Source§fn clone(&self) -> ListStyleBias
fn clone(&self) -> ListStyleBias
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 ListStyleBias
impl Debug for ListStyleBias
Source§impl Default for ListStyleBias
impl Default for ListStyleBias
Source§fn default() -> ListStyleBias
fn default() -> ListStyleBias
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStyleBias
impl PartialEq for ListStyleBias
Source§fn eq(&self, other: &ListStyleBias) -> bool
fn eq(&self, other: &ListStyleBias) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ListStyleBias
impl Eq for ListStyleBias
impl StructuralPartialEq for ListStyleBias
Auto Trait Implementations§
impl Freeze for ListStyleBias
impl RefUnwindSafe for ListStyleBias
impl Send for ListStyleBias
impl Sync for ListStyleBias
impl Unpin for ListStyleBias
impl UnsafeUnpin for ListStyleBias
impl UnwindSafe for ListStyleBias
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