pub enum SeparatorOperator {
Async,
Sequence,
}
Expand description
Indicates whether the preceding command is executed synchronously or asynchronously.
Variants§
Async
The preceding command is executed asynchronously.
Sequence
The preceding command is executed synchronously.
Trait Implementations§
Source§impl Clone for SeparatorOperator
impl Clone for SeparatorOperator
Source§fn clone(&self) -> SeparatorOperator
fn clone(&self) -> SeparatorOperator
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 SeparatorOperator
impl Debug for SeparatorOperator
Auto Trait Implementations§
impl Freeze for SeparatorOperator
impl RefUnwindSafe for SeparatorOperator
impl Send for SeparatorOperator
impl Sync for SeparatorOperator
impl Unpin for SeparatorOperator
impl UnwindSafe for SeparatorOperator
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