pub struct MutationTicket {
pub audit_id: i64,
pub correlation_id: String,
pub tool_name: String,
}Expand description
Handle for a mutation in progress. Created by the gateway on Proceed.
Carries the audit trail ID and correlation ID needed to complete the audit record after execution.
Fields§
§audit_id: i64§correlation_id: String§tool_name: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for MutationTicket
impl RefUnwindSafe for MutationTicket
impl Send for MutationTicket
impl Sync for MutationTicket
impl Unpin for MutationTicket
impl UnsafeUnpin for MutationTicket
impl UnwindSafe for MutationTicket
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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