pub struct DerivationSuccess { /* private fields */ }Expand description
Success result from run derivation.
Implementations§
Source§impl DerivationSuccess
impl DerivationSuccess
Sourcepub fn derived(&self) -> &[RunInstance]
pub fn derived(&self) -> &[RunInstance]
Returns the newly derived run instances.
Sourcepub fn into_derived(self) -> Vec<RunInstance>
pub fn into_derived(self) -> Vec<RunInstance>
Consumes self and returns the newly derived run instances.
Sourcepub fn already_derived(&self) -> u32
pub fn already_derived(&self) -> u32
Returns the total number of runs considered derived for the task after this call.
Trait Implementations§
Source§impl Clone for DerivationSuccess
impl Clone for DerivationSuccess
Source§fn clone(&self) -> DerivationSuccess
fn clone(&self) -> DerivationSuccess
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 DerivationSuccess
impl Debug for DerivationSuccess
Source§impl PartialEq for DerivationSuccess
impl PartialEq for DerivationSuccess
impl Eq for DerivationSuccess
impl StructuralPartialEq for DerivationSuccess
Auto Trait Implementations§
impl Freeze for DerivationSuccess
impl RefUnwindSafe for DerivationSuccess
impl Send for DerivationSuccess
impl Sync for DerivationSuccess
impl Unpin for DerivationSuccess
impl UnsafeUnpin for DerivationSuccess
impl UnwindSafe for DerivationSuccess
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