pub enum ReplaySupport {
Allowed,
DryRunOnly,
Unsupported,
}Expand description
Replay posture attached to a stage or document.
Variants§
Allowed
Replay execution is allowed.
DryRunOnly
Replay is supported only as dry-run.
Unsupported
Replay is not supported.
Trait Implementations§
Source§impl Clone for ReplaySupport
impl Clone for ReplaySupport
Source§fn clone(&self) -> ReplaySupport
fn clone(&self) -> ReplaySupport
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 ReplaySupport
impl Debug for ReplaySupport
Source§impl PartialEq for ReplaySupport
impl PartialEq for ReplaySupport
Source§impl Serialize for ReplaySupport
impl Serialize for ReplaySupport
impl Copy for ReplaySupport
impl Eq for ReplaySupport
impl StructuralPartialEq for ReplaySupport
Auto Trait Implementations§
impl Freeze for ReplaySupport
impl RefUnwindSafe for ReplaySupport
impl Send for ReplaySupport
impl Sync for ReplaySupport
impl Unpin for ReplaySupport
impl UnwindSafe for ReplaySupport
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