pub enum VersionDirection {
NewestFirst,
OldestFirst,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VersionDirection
impl Clone for VersionDirection
Source§fn clone(&self) -> VersionDirection
fn clone(&self) -> VersionDirection
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 moreimpl Copy for VersionDirection
Source§impl Debug for VersionDirection
impl Debug for VersionDirection
Source§impl<'de> Deserialize<'de> for VersionDirection
impl<'de> Deserialize<'de> for VersionDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for VersionDirection
Source§impl PartialEq for VersionDirection
impl PartialEq for VersionDirection
Source§fn eq(&self, other: &VersionDirection) -> bool
fn eq(&self, other: &VersionDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VersionDirection
impl Serialize for VersionDirection
impl StructuralPartialEq for VersionDirection
Auto Trait Implementations§
impl Freeze for VersionDirection
impl RefUnwindSafe for VersionDirection
impl Send for VersionDirection
impl Sync for VersionDirection
impl Unpin for VersionDirection
impl UnsafeUnpin for VersionDirection
impl UnwindSafe for VersionDirection
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