pub struct CheckReviewResult {
pub found: bool,
pub state: String,
pub checks_passing: Option<bool>,
}Expand description
Result from the check_review method.
Fields§
§found: boolWhether review info was found (false = review not found by adapter).
state: StringCurrent state (e.g., “open”, “merged”, “closed”).
checks_passing: Option<bool>Whether CI checks are passing.
Trait Implementations§
Source§impl Debug for CheckReviewResult
impl Debug for CheckReviewResult
Source§impl<'de> Deserialize<'de> for CheckReviewResult
impl<'de> Deserialize<'de> for CheckReviewResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CheckReviewResult
impl RefUnwindSafe for CheckReviewResult
impl Send for CheckReviewResult
impl Sync for CheckReviewResult
impl Unpin for CheckReviewResult
impl UnsafeUnpin for CheckReviewResult
impl UnwindSafe for CheckReviewResult
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