pub enum AuditMode {
Async,
Sync,
}Expand description
GH #34 — dispatch timing for an AuditDef’s audit agent. Neither
variant ever changes the audited step’s outcome (see
Blueprint::audits’s binding invariant).
Variants§
Async
Fire-and-forget: the audit runs in the background after the audited step settles; the audited step’s own spawn signal returns immediately, without waiting for the audit to finish.
Sync
Awaited before the audited step’s spawn signal is returned to the engine — still never alters that signal or the step’s recorded outcome.
Trait Implementations§
impl Copy for AuditMode
Source§impl<'de> Deserialize<'de> for AuditMode
impl<'de> Deserialize<'de> for AuditMode
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 AuditMode
Source§impl JsonSchema for AuditMode
impl JsonSchema for AuditMode
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for AuditMode
Auto Trait Implementations§
impl Freeze for AuditMode
impl RefUnwindSafe for AuditMode
impl Send for AuditMode
impl Sync for AuditMode
impl Unpin for AuditMode
impl UnsafeUnpin for AuditMode
impl UnwindSafe for AuditMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more