pub struct Gathered {
pub pending: Vec<Pending>,
pub skipped: Vec<String>,
pub degraded: bool,
}Expand description
What was found, and what was passed over.
The skipped list is not decoration. “Nothing to do” and “everything was filtered out” look identical from outside, and the second one is a configuration mistake somebody needs to see.
Fields§
§pending: Vec<Pending>§skipped: Vec<String>§degraded: boolTrue when the review threads could not be read and spar fell back to the REST comments endpoint. Nothing is resolved on a degraded run.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Gathered
impl RefUnwindSafe for Gathered
impl Send for Gathered
impl Sync for Gathered
impl Unpin for Gathered
impl UnsafeUnpin for Gathered
impl UnwindSafe for Gathered
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