pub enum ChangelogType {
Added,
Changed,
Deprecated,
Removed,
Fixed,
Security,
}Expand description
Type of changelog entry
Variants§
Added
New feature added
Changed
Feature modified
Deprecated
Feature deprecated
Removed
Feature removed
Fixed
Bug fixed
Security
Security fix
Trait Implementations§
Source§impl Clone for ChangelogType
impl Clone for ChangelogType
Source§fn clone(&self) -> ChangelogType
fn clone(&self) -> ChangelogType
Returns a duplicate 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 ChangelogType
impl Debug for ChangelogType
Source§impl<'de> Deserialize<'de> for ChangelogType
impl<'de> Deserialize<'de> for ChangelogType
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
Source§impl PartialEq for ChangelogType
impl PartialEq for ChangelogType
Source§impl Serialize for ChangelogType
impl Serialize for ChangelogType
impl Copy for ChangelogType
impl Eq for ChangelogType
impl StructuralPartialEq for ChangelogType
Auto Trait Implementations§
impl Freeze for ChangelogType
impl RefUnwindSafe for ChangelogType
impl Send for ChangelogType
impl Sync for ChangelogType
impl Unpin for ChangelogType
impl UnwindSafe for ChangelogType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.