pub struct RecalculateOutcome {
pub backend: String,
pub duration_ms: u64,
pub cells_evaluated: Option<u64>,
pub eval_errors: Option<Vec<String>>,
}Fields§
§backend: String§duration_ms: u64§cells_evaluated: Option<u64>§eval_errors: Option<Vec<String>>Trait Implementations§
Source§impl Clone for RecalculateOutcome
impl Clone for RecalculateOutcome
Source§fn clone(&self) -> RecalculateOutcome
fn clone(&self) -> RecalculateOutcome
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 moreAuto Trait Implementations§
impl Freeze for RecalculateOutcome
impl RefUnwindSafe for RecalculateOutcome
impl Send for RecalculateOutcome
impl Sync for RecalculateOutcome
impl Unpin for RecalculateOutcome
impl UnwindSafe for RecalculateOutcome
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