pub struct ReviewAnnotation {
pub id: String,
pub checks: CheckStatus,
pub queued: bool,
pub summary: Option<ReviewSummary>,
}Expand description
Per-branch review data threaded into the list tree: the id (e.g. #12),
its CI dot, whether it sits in a merge queue/train, and - only with
--reviews - the review tallies.
Fields§
§id: String§checks: CheckStatus§queued: bool§summary: Option<ReviewSummary>Auto Trait Implementations§
impl Freeze for ReviewAnnotation
impl RefUnwindSafe for ReviewAnnotation
impl Send for ReviewAnnotation
impl Sync for ReviewAnnotation
impl Unpin for ReviewAnnotation
impl UnsafeUnpin for ReviewAnnotation
impl UnwindSafe for ReviewAnnotation
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