pub struct ReleaseCandidate {
pub repository: String,
pub commit: String,
pub tag: CalendarTag,
pub intent: ReleaseIntent,
pub tag_already_sealed: bool,
}Fields§
§repository: String§commit: String§tag: CalendarTag§intent: ReleaseIntent§tag_already_sealed: boolTrait Implementations§
Source§impl Clone for ReleaseCandidate
impl Clone for ReleaseCandidate
Source§fn clone(&self) -> ReleaseCandidate
fn clone(&self) -> ReleaseCandidate
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 ReleaseCandidate
impl Debug for ReleaseCandidate
impl Eq for ReleaseCandidate
Source§impl PartialEq for ReleaseCandidate
impl PartialEq for ReleaseCandidate
impl StructuralPartialEq for ReleaseCandidate
Auto Trait Implementations§
impl Freeze for ReleaseCandidate
impl RefUnwindSafe for ReleaseCandidate
impl Send for ReleaseCandidate
impl Sync for ReleaseCandidate
impl Unpin for ReleaseCandidate
impl UnsafeUnpin for ReleaseCandidate
impl UnwindSafe for ReleaseCandidate
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