Skip to main content

Sort

Enum Sort 

Source
pub enum Sort {
    Ascending,
    Descending,
}
Expand description

Which way a column is ordered.

Two, because there is no third. “Unsorted” is Column::sorted being None, and folding it in here would be the same absence said twice.

Variants§

§

Ascending

Smallest, earliest or first alphabetically at the top.

§

Descending

The other way.

Implementations§

Source§

impl Sort

Source

pub const fn reversed(self) -> Self

The other direction, for a header that flips when pressed.

Source

pub const fn as_str(self) -> &'static str

What a webview writes into aria-sort.

Named here rather than in the webview renderer because a terminal and an immediate-mode painter both want the same two words for a caret’s label, and three renderers picking their own is the drift this crate ends.

Source

pub const fn glyph(self) -> &'static str

The caret a renderer draws for this direction.

Here for as_str’s reason, said about a glyph rather than a word: three renderers picking their own is the drift this crate ends. They had picked their own — two on the solid triangles and makeover-webview on the arrows U+2191/U+2193 — and agreeing by coincidence in three files is not agreement.

Settled 2026-08-16 (Max): the solid triangles, U+25B2 and U+25BC. The reason generalizes past this pair and is the house rule now — prefer the bolder, simpler glyph over the thinner or more complicated one. A third spelling is not open for re-argument.

Bare, with no spacing. Where the gap goes is each renderer’s business: makeover-tui and makeover-immediate carry a leading space inside their TableStyle string and a webview emits its own in content, so folding a space in here would make one of the two wrong.

Neither face the web apps self-host carries these — IBM Plex Mono has one glyph in the whole geometric-shapes block and Lato has none — so a browser falls back per glyph until the in-house face ships with them drawn in (makeover 6d6d9146, wiki typography-standard). Cosmetic drift in one renderer, not a reason to spell it three ways.

Trait Implementations§

Source§

impl Clone for Sort

Source§

fn clone(&self) -> Sort

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Sort

Source§

impl Debug for Sort

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Sort

Source§

impl Hash for Sort

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Sort

Source§

fn eq(&self, other: &Sort) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Sort

Auto Trait Implementations§

§

impl Freeze for Sort

§

impl RefUnwindSafe for Sort

§

impl Send for Sort

§

impl Sync for Sort

§

impl Unpin for Sort

§

impl UnsafeUnpin for Sort

§

impl UnwindSafe for Sort

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.