pub struct ControlFlags {
pub aborted: bool,
pub abort_reason: Option<String>,
}Expand description
Control flow flags for ops execution
Fields§
§aborted: bool§abort_reason: Option<String>Trait Implementations§
Source§impl Clone for ControlFlags
impl Clone for ControlFlags
Source§fn clone(&self) -> ControlFlags
fn clone(&self) -> ControlFlags
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 ControlFlags
impl Debug for ControlFlags
Source§impl Default for ControlFlags
impl Default for ControlFlags
Source§impl<'de> Deserialize<'de> for ControlFlags
impl<'de> Deserialize<'de> for ControlFlags
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
Auto Trait Implementations§
impl Freeze for ControlFlags
impl RefUnwindSafe for ControlFlags
impl Send for ControlFlags
impl Sync for ControlFlags
impl Unpin for ControlFlags
impl UnsafeUnpin for ControlFlags
impl UnwindSafe for ControlFlags
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