pub struct SimulateOutput {
pub workspace: String,
pub version_diff: HashMap<String, String>,
pub breaking_changes: usize,
pub features: usize,
pub fixes: usize,
pub other: usize,
pub recommendations: Vec<String>,
}Expand description
Simulate output.
Fields§
§workspace: StringWorkspace name.
version_diff: HashMap<String, String>Version diff.
breaking_changes: usizeBreaking changes.
features: usizeFeature count.
fixes: usizeFix count.
other: usizeOther commit count.
recommendations: Vec<String>Recommendations.
Trait Implementations§
Source§impl Clone for SimulateOutput
impl Clone for SimulateOutput
Source§fn clone(&self) -> SimulateOutput
fn clone(&self) -> SimulateOutput
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 SimulateOutput
impl Debug for SimulateOutput
Auto Trait Implementations§
impl Freeze for SimulateOutput
impl RefUnwindSafe for SimulateOutput
impl Send for SimulateOutput
impl Sync for SimulateOutput
impl Unpin for SimulateOutput
impl UnsafeUnpin for SimulateOutput
impl UnwindSafe for SimulateOutput
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