pub enum RunRegistryStatus {
Registered,
CancellationRequested,
}Expand description
Enumerates the finite run registry status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Registered
Use this variant when the contract needs to represent registered; selecting it has no side effect by itself.
CancellationRequested
Use this variant when the contract needs to represent cancellation requested; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for RunRegistryStatus
impl Clone for RunRegistryStatus
Source§fn clone(&self) -> RunRegistryStatus
fn clone(&self) -> RunRegistryStatus
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 RunRegistryStatus
impl Debug for RunRegistryStatus
Source§impl PartialEq for RunRegistryStatus
impl PartialEq for RunRegistryStatus
Source§fn eq(&self, other: &RunRegistryStatus) -> bool
fn eq(&self, other: &RunRegistryStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RunRegistryStatus
impl StructuralPartialEq for RunRegistryStatus
Auto Trait Implementations§
impl Freeze for RunRegistryStatus
impl RefUnwindSafe for RunRegistryStatus
impl Send for RunRegistryStatus
impl Sync for RunRegistryStatus
impl Unpin for RunRegistryStatus
impl UnsafeUnpin for RunRegistryStatus
impl UnwindSafe for RunRegistryStatus
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