pub struct CheckRun {
pub job: String,
pub sha: String,
pub conclusion: Conclusion,
pub toolchain: String,
pub platform: TargetOs,
pub features: Features,
pub targets: Targets,
}Expand description
One compiling CI job, as it ran.
Fields§
§job: StringJob name, for the message a suppression prints (msrv, checks, …). A
human told which job refutes the claim can go and look; a human told
“CI is green” cannot.
sha: StringThe commit this job ran on. Compared for equality with the claim’s
reviewed_sha: a green run on a later commit says nothing about the tree
the reviewer saw.
conclusion: ConclusionHow it finished.
toolchain: StringThe toolchain it used (1.94, stable), verbatim.
platform: TargetOsThe platform it ran on.
features: FeaturesThe feature set it compiled.
targets: TargetsThe targets it compiled.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CheckRun
impl<'de> Deserialize<'de> for CheckRun
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
impl Eq for CheckRun
impl StructuralPartialEq for CheckRun
Auto Trait Implementations§
impl Freeze for CheckRun
impl RefUnwindSafe for CheckRun
impl Send for CheckRun
impl Sync for CheckRun
impl Unpin for CheckRun
impl UnsafeUnpin for CheckRun
impl UnwindSafe for CheckRun
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.