pub struct OpenGate {
pub phase: u32,
pub stage: Stage,
pub context: String,
pub timestamp: String,
}Expand description
An open gate: a request the workflow wrote that has no response yet.
Fields§
§phase: u32Phase the gate belongs to.
stage: StageStage that fired the gate.
context: StringHuman-readable context from the request.
timestamp: StringUnix timestamp (seconds) when the gate was written.
Trait Implementations§
impl Eq for OpenGate
impl StructuralPartialEq for OpenGate
Auto Trait Implementations§
impl Freeze for OpenGate
impl RefUnwindSafe for OpenGate
impl Send for OpenGate
impl Sync for OpenGate
impl Unpin for OpenGate
impl UnsafeUnpin for OpenGate
impl UnwindSafe for OpenGate
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