pub enum SortSource {
Variable(AnyVariable),
Macro(Atom),
}Expand description
You must sort on either a variable or a macro
Variants§
Variable(AnyVariable)
Macro(Atom)
Trait Implementations§
Source§impl Clone for SortSource
impl Clone for SortSource
Source§fn clone(&self) -> SortSource
fn clone(&self) -> SortSource
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 SortSource
impl Debug for SortSource
impl Eq for SortSource
Source§impl PartialEq for SortSource
impl PartialEq for SortSource
Source§fn eq(&self, other: &SortSource) -> bool
fn eq(&self, other: &SortSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SortSource
Auto Trait Implementations§
impl Freeze for SortSource
impl RefUnwindSafe for SortSource
impl Send for SortSource
impl Sync for SortSource
impl Unpin for SortSource
impl UnsafeUnpin for SortSource
impl UnwindSafe for SortSource
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