pub enum RnxCompletion {
NotExecuted {
started_at: f64,
},
Executed {
return_code: Option<i32>,
started_at: f64,
conclusion: ExecutionConclusion,
},
}Variants§
Trait Implementations§
Source§impl Clone for RnxCompletion
impl Clone for RnxCompletion
Source§fn clone(&self) -> RnxCompletion
fn clone(&self) -> RnxCompletion
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 moreimpl Copy for RnxCompletion
Source§impl Debug for RnxCompletion
impl Debug for RnxCompletion
Source§impl PartialEq for RnxCompletion
impl PartialEq for RnxCompletion
impl StructuralPartialEq for RnxCompletion
Auto Trait Implementations§
impl Freeze for RnxCompletion
impl RefUnwindSafe for RnxCompletion
impl Send for RnxCompletion
impl Sync for RnxCompletion
impl Unpin for RnxCompletion
impl UnsafeUnpin for RnxCompletion
impl UnwindSafe for RnxCompletion
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