pub struct Settled {
pub pending: Pending,
pub ask: Ask,
pub request: String,
pub reasoning: String,
pub summary: String,
pub changed: bool,
pub pushed: bool,
pub blocked: Option<String>,
pub filed: Option<String>,
pub parked: bool,
pub counterpoint: Option<String>,
}Expand description
One comment, and what the pair decided about it.
Fields§
§pending: Pending§ask: Ask§request: StringWhat the judging agent understood the comment to be asking for.
reasoning: StringThe argument, for a decline, or the answer, for a question.
summary: StringWhat the fix pass said it did.
changed: bool§pushed: bool§blocked: Option<String>Why a change that was agreed on did not happen.
filed: Option<String>Where a deferred point went.
parked: boolTrue when the two did not say the same thing, so nobody acted.
counterpoint: Option<String>The other agent’s reasoning, when it had something to say.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Settled
impl RefUnwindSafe for Settled
impl Send for Settled
impl Sync for Settled
impl Unpin for Settled
impl UnsafeUnpin for Settled
impl UnwindSafe for Settled
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