pub struct RunReport {
pub record: RunRecord,
pub token: Option<MergeToken>,
pub refusal: Option<Refusal>,
pub diff: String,
}Expand description
What a finished run produced.
Fields§
§record: RunRecord§token: Option<MergeToken>Present only when the gate minted one. Its absence is the refusal.
refusal: Option<Refusal>§diff: StringImplementations§
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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