pub struct ReleasePlan {
pub package_name: String,
pub current_version: Version,
pub next_version: Version,
pub level: ReleaseLevel,
}Expand description
A simple release plan derived from a version bump.
Fields§
§package_name: String§current_version: Version§next_version: Version§level: ReleaseLevelImplementations§
Source§impl ReleasePlan
impl ReleasePlan
Trait Implementations§
Source§impl Clone for ReleasePlan
impl Clone for ReleasePlan
Source§fn clone(&self) -> ReleasePlan
fn clone(&self) -> ReleasePlan
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 ReleasePlan
impl Debug for ReleasePlan
Source§impl<'de> Deserialize<'de> for ReleasePlan
impl<'de> Deserialize<'de> for ReleasePlan
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 ReleasePlan
impl PartialEq for ReleasePlan
Source§fn eq(&self, other: &ReleasePlan) -> bool
fn eq(&self, other: &ReleasePlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReleasePlan
impl Serialize for ReleasePlan
impl Eq for ReleasePlan
impl StructuralPartialEq for ReleasePlan
Auto Trait Implementations§
impl Freeze for ReleasePlan
impl RefUnwindSafe for ReleasePlan
impl Send for ReleasePlan
impl Sync for ReleasePlan
impl Unpin for ReleasePlan
impl UnsafeUnpin for ReleasePlan
impl UnwindSafe for ReleasePlan
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.