pub enum ControlSupport {
Supported,
Unsupported {
reason: String,
},
}Expand description
Support for one operation on the actual selected execution configuration.
Variants§
Supported
Implemented with the scope and guarantees in the enclosing report.
Unsupported
Rejected before work begins.
Trait Implementations§
Source§impl Clone for ControlSupport
impl Clone for ControlSupport
Source§fn clone(&self) -> ControlSupport
fn clone(&self) -> ControlSupport
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 ControlSupport
impl Debug for ControlSupport
Source§impl<'de> Deserialize<'de> for ControlSupport
impl<'de> Deserialize<'de> for ControlSupport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ControlSupport
Source§impl PartialEq for ControlSupport
impl PartialEq for ControlSupport
Source§impl Serialize for ControlSupport
impl Serialize for ControlSupport
impl StructuralPartialEq for ControlSupport
Auto Trait Implementations§
impl Freeze for ControlSupport
impl RefUnwindSafe for ControlSupport
impl Send for ControlSupport
impl Sync for ControlSupport
impl Unpin for ControlSupport
impl UnsafeUnpin for ControlSupport
impl UnwindSafe for ControlSupport
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