pub struct ExecutionMetadata {
pub constants: Vec<ExecutionConstant>,
pub parameters: Vec<ExecutionSlot>,
pub covariates: Vec<ExecutionCovariate>,
pub states: Vec<ExecutionState>,
pub routes: Vec<ExecutionRoute>,
pub derived: Vec<ExecutionSlot>,
pub outputs: Vec<ExecutionSlot>,
pub particles: Option<usize>,
pub analytical: Option<AnalyticalKernel>,
}Fields§
§constants: Vec<ExecutionConstant>§parameters: Vec<ExecutionSlot>§covariates: Vec<ExecutionCovariate>§states: Vec<ExecutionState>§routes: Vec<ExecutionRoute>§derived: Vec<ExecutionSlot>§outputs: Vec<ExecutionSlot>§particles: Option<usize>§analytical: Option<AnalyticalKernel>Trait Implementations§
Source§impl Clone for ExecutionMetadata
impl Clone for ExecutionMetadata
Source§fn clone(&self) -> ExecutionMetadata
fn clone(&self) -> ExecutionMetadata
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 moreSource§impl Debug for ExecutionMetadata
impl Debug for ExecutionMetadata
Source§impl PartialEq for ExecutionMetadata
impl PartialEq for ExecutionMetadata
Source§fn eq(&self, other: &ExecutionMetadata) -> bool
fn eq(&self, other: &ExecutionMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionMetadata
Auto Trait Implementations§
impl Freeze for ExecutionMetadata
impl RefUnwindSafe for ExecutionMetadata
impl Send for ExecutionMetadata
impl Sync for ExecutionMetadata
impl Unpin for ExecutionMetadata
impl UnsafeUnpin for ExecutionMetadata
impl UnwindSafe for ExecutionMetadata
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