pub enum Order {
Ascending,
Descending,
Unordered,
}
Expand description
lexicographic ordering for serialization
Note that there are no ordering marks in the serialized data; specification of different ordering for serialization and deserialization of the same data is UB.
Variants§
Ascending
Descending
Unordered
For use by other crates. For the purposes of ordcode
, same as Ascending
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Order
impl RefUnwindSafe for Order
impl Send for Order
impl Sync for Order
impl Unpin for Order
impl UnwindSafe for Order
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