pub struct DataScriptStep<Operation> { /* private fields */ }Expand description
One named transaction step in a data-only transaction script.
Implementations§
Source§impl<Operation> DataScriptStep<Operation>
impl<Operation> DataScriptStep<Operation>
Sourcepub fn operations(&self) -> &[Operation]
pub fn operations(&self) -> &[Operation]
Returns data operations in staging order.
Trait Implementations§
Source§impl<Operation: Clone> Clone for DataScriptStep<Operation>
impl<Operation: Clone> Clone for DataScriptStep<Operation>
Source§fn clone(&self) -> DataScriptStep<Operation>
fn clone(&self) -> DataScriptStep<Operation>
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<Operation: Debug> Debug for DataScriptStep<Operation>
impl<Operation: Debug> Debug for DataScriptStep<Operation>
impl<Operation: Eq> Eq for DataScriptStep<Operation>
Source§impl<Operation: PartialEq> PartialEq for DataScriptStep<Operation>
impl<Operation: PartialEq> PartialEq for DataScriptStep<Operation>
Source§fn eq(&self, other: &DataScriptStep<Operation>) -> bool
fn eq(&self, other: &DataScriptStep<Operation>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<Operation: PartialEq> StructuralPartialEq for DataScriptStep<Operation>
Auto Trait Implementations§
impl<Operation> Freeze for DataScriptStep<Operation>
impl<Operation> RefUnwindSafe for DataScriptStep<Operation>where
Operation: RefUnwindSafe,
impl<Operation> Send for DataScriptStep<Operation>where
Operation: Send,
impl<Operation> Sync for DataScriptStep<Operation>where
Operation: Sync,
impl<Operation> Unpin for DataScriptStep<Operation>where
Operation: Unpin,
impl<Operation> UnsafeUnpin for DataScriptStep<Operation>
impl<Operation> UnwindSafe for DataScriptStep<Operation>where
Operation: UnwindSafe,
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