pub struct GateReport {
pub reading: GateReading,
pub gate_condition: Option<Condition>,
pub gate_trigger: Trigger,
pub unreadable: Vec<String>,
}Expand description
The reading and what the reader judges beside it.
Fields§
§reading: GateReadingWhat the workflows say.
gate_condition: Option<Condition>The gate job’s condition, where a gate job was found.
gate_trigger: TriggerWhat the gate’s workflow filters its pull-request trigger by.
unreadable: Vec<String>Workflow files that could not be read, so their jobs are unjudged.
Trait Implementations§
Source§impl Debug for GateReport
impl Debug for GateReport
impl Eq for GateReport
Source§impl PartialEq for GateReport
impl PartialEq for GateReport
impl StructuralPartialEq for GateReport
Auto Trait Implementations§
impl Freeze for GateReport
impl RefUnwindSafe for GateReport
impl Send for GateReport
impl Sync for GateReport
impl Unpin for GateReport
impl UnsafeUnpin for GateReport
impl UnwindSafe for GateReport
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