pub enum PushInstruction {
Push(SequenceValue),
PushStart(SequenceValue),
}Variants§
Push(SequenceValue)
Push the given value to the end of the subject.
PushStart(SequenceValue)
Push the given value to the start of the subject.
Trait Implementations§
Source§impl Clone for PushInstruction
impl Clone for PushInstruction
Source§fn clone(&self) -> PushInstruction
fn clone(&self) -> PushInstruction
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 moreSource§impl Debug for PushInstruction
impl Debug for PushInstruction
Source§impl PartialEq for PushInstruction
impl PartialEq for PushInstruction
impl Eq for PushInstruction
impl StructuralPartialEq for PushInstruction
Auto Trait Implementations§
impl Freeze for PushInstruction
impl RefUnwindSafe for PushInstruction
impl Send for PushInstruction
impl Sync for PushInstruction
impl Unpin for PushInstruction
impl UnwindSafe for PushInstruction
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