pub struct GateFile {
pub phase: u32,
pub stage: Stage,
pub context: String,
pub timestamp: String,
}Expand description
The gate request DevFlow writes when it pauses for a human decision.
Fields§
§phase: u32Phase the gate belongs to.
stage: StageStage that fired the gate.
context: StringHuman-readable context explaining what is being asked.
timestamp: StringUnix timestamp (seconds) when the gate was written.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GateFile
impl<'de> Deserialize<'de> for GateFile
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 GateFile
impl StructuralPartialEq for GateFile
Auto Trait Implementations§
impl Freeze for GateFile
impl RefUnwindSafe for GateFile
impl Send for GateFile
impl Sync for GateFile
impl Unpin for GateFile
impl UnsafeUnpin for GateFile
impl UnwindSafe for GateFile
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