pub struct FullOutput {
pub workspace: String,
pub steps_completed: Vec<String>,
pub version: String,
pub publish: PublishOutput,
pub dry_run: bool,
}Expand description
Full release output.
Fields§
§workspace: StringWorkspace name.
steps_completed: Vec<String>Completed steps.
version: StringFinal version.
publish: PublishOutputPublish summary.
dry_run: boolDry run flag.
Trait Implementations§
Source§impl Clone for FullOutput
impl Clone for FullOutput
Source§fn clone(&self) -> FullOutput
fn clone(&self) -> FullOutput
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 FullOutput
impl Debug for FullOutput
Auto Trait Implementations§
impl Freeze for FullOutput
impl RefUnwindSafe for FullOutput
impl Send for FullOutput
impl Sync for FullOutput
impl Unpin for FullOutput
impl UnsafeUnpin for FullOutput
impl UnwindSafe for FullOutput
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