pub struct FinishOutcome {
pub change: Gid,
pub change_name: String,
pub trajectory: Gid,
pub trajectory_name: String,
pub state: Gid,
pub state_name: String,
pub operations: Vec<Gid>,
pub claims: Vec<Gid>,
pub evidence: Vec<Gid>,
pub residuals: Vec<Gid>,
pub is_new_trajectory: bool,
}Expand description
The outcome of change finish.
Fields§
§change: Gid§change_name: String§trajectory: Gid§trajectory_name: String§state: Gid§state_name: String§operations: Vec<Gid>§claims: Vec<Gid>§evidence: Vec<Gid>§residuals: Vec<Gid>§is_new_trajectory: boolTrait Implementations§
Source§impl Clone for FinishOutcome
impl Clone for FinishOutcome
Source§fn clone(&self) -> FinishOutcome
fn clone(&self) -> FinishOutcome
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 moreAuto Trait Implementations§
impl Freeze for FinishOutcome
impl RefUnwindSafe for FinishOutcome
impl Send for FinishOutcome
impl Sync for FinishOutcome
impl Unpin for FinishOutcome
impl UnsafeUnpin for FinishOutcome
impl UnwindSafe for FinishOutcome
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