Enum crates_index_diff::ChangeKind
source · [−]pub enum ChangeKind {
Added,
Yanked,
}
Expand description
Identify a kind of change that occurred to a crate
Variants
Added
A crate version was added
Yanked
A crate version was added or it was unyanked.
Trait Implementations
sourceimpl Clone for ChangeKind
impl Clone for ChangeKind
sourcefn clone(&self) -> ChangeKind
fn clone(&self) -> ChangeKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ChangeKind
impl Debug for ChangeKind
sourceimpl Default for ChangeKind
impl Default for ChangeKind
sourceimpl<'de> Deserialize<'de> for ChangeKind
impl<'de> Deserialize<'de> for ChangeKind
sourcefn 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
sourceimpl Display for ChangeKind
impl Display for ChangeKind
sourceimpl Ord for ChangeKind
impl Ord for ChangeKind
sourceimpl PartialEq<ChangeKind> for ChangeKind
impl PartialEq<ChangeKind> for ChangeKind
sourceimpl PartialOrd<ChangeKind> for ChangeKind
impl PartialOrd<ChangeKind> for ChangeKind
sourcefn partial_cmp(&self, other: &ChangeKind) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangeKind) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for ChangeKind
impl Serialize for ChangeKind
impl Copy for ChangeKind
impl Eq for ChangeKind
impl StructuralEq for ChangeKind
impl StructuralPartialEq for ChangeKind
Auto Trait Implementations
impl RefUnwindSafe for ChangeKind
impl Send for ChangeKind
impl Sync for ChangeKind
impl Unpin for ChangeKind
impl UnwindSafe for ChangeKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more