pub enum ValidationDisplay {
NoDisplay,
Unsorted,
SortAscending,
}Expand description
This defines how lists of entries are displayed to the user.
Variants§
NoDisplay
Don’t show.
Unsorted
Show the entries in the original order.
SortAscending
Sort the entries.
Trait Implementations§
source§impl Clone for ValidationDisplay
impl Clone for ValidationDisplay
source§fn clone(&self) -> ValidationDisplay
fn clone(&self) -> ValidationDisplay
Returns a copy of the value. Read more
1.0.0 · 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 ValidationDisplay
impl Debug for ValidationDisplay
source§impl Default for ValidationDisplay
impl Default for ValidationDisplay
source§fn default() -> ValidationDisplay
fn default() -> ValidationDisplay
Returns the “default value” for a type. Read more
source§impl TryFrom<&[u8]> for ValidationDisplay
impl TryFrom<&[u8]> for ValidationDisplay
source§impl TryFrom<&str> for ValidationDisplay
impl TryFrom<&str> for ValidationDisplay
impl Copy for ValidationDisplay
Auto Trait Implementations§
impl RefUnwindSafe for ValidationDisplay
impl Send for ValidationDisplay
impl Sync for ValidationDisplay
impl Unpin for ValidationDisplay
impl UnwindSafe for ValidationDisplay
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