pub struct ModelScript {
pub topology: ModelTopology,
pub steps: Vec<ModelStep>,
}Expand description
Generated deterministic graph shape and input sequence.
Fields§
§topology: ModelTopologyGraph shape selected by the generator.
steps: Vec<ModelStep>Ordered model mutations.
Trait Implementations§
Source§impl Clone for ModelScript
impl Clone for ModelScript
Source§fn clone(&self) -> ModelScript
fn clone(&self) -> ModelScript
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 ModelScript
impl Debug for ModelScript
impl Eq for ModelScript
Source§impl PartialEq for ModelScript
impl PartialEq for ModelScript
Source§fn eq(&self, other: &ModelScript) -> bool
fn eq(&self, other: &ModelScript) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModelScript
Auto Trait Implementations§
impl Freeze for ModelScript
impl RefUnwindSafe for ModelScript
impl Send for ModelScript
impl Sync for ModelScript
impl Unpin for ModelScript
impl UnsafeUnpin for ModelScript
impl UnwindSafe for ModelScript
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