pub enum ExecutionLoad {
Parameter(usize),
Covariate(usize),
State(ExecutionStateRef),
Derived(usize),
Local(usize),
RouteInput {
route: SymbolId,
index: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for ExecutionLoad
impl Clone for ExecutionLoad
Source§fn clone(&self) -> ExecutionLoad
fn clone(&self) -> ExecutionLoad
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 ExecutionLoad
impl Debug for ExecutionLoad
Source§impl PartialEq for ExecutionLoad
impl PartialEq for ExecutionLoad
Source§fn eq(&self, other: &ExecutionLoad) -> bool
fn eq(&self, other: &ExecutionLoad) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionLoad
Auto Trait Implementations§
impl Freeze for ExecutionLoad
impl RefUnwindSafe for ExecutionLoad
impl Send for ExecutionLoad
impl Sync for ExecutionLoad
impl Unpin for ExecutionLoad
impl UnsafeUnpin for ExecutionLoad
impl UnwindSafe for ExecutionLoad
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