pub struct GithubCheckRun {
pub id: i64,
pub name: String,
pub head_sha: String,
pub status: String,
pub conclusion: Option<String>,
pub html_url: Option<String>,
pub output: Option<GithubCheckRunOutput>,
}Expand description
Details of a single check run
Fields§
§id: i64§name: String§head_sha: String§status: String§conclusion: Option<String>§html_url: Option<String>§output: Option<GithubCheckRunOutput>Trait Implementations§
Source§impl Clone for GithubCheckRun
impl Clone for GithubCheckRun
Source§fn clone(&self) -> GithubCheckRun
fn clone(&self) -> GithubCheckRun
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GithubCheckRun
impl Debug for GithubCheckRun
Source§impl<'de> Deserialize<'de> for GithubCheckRun
impl<'de> Deserialize<'de> for GithubCheckRun
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 GithubCheckRun
impl RefUnwindSafe for GithubCheckRun
impl Send for GithubCheckRun
impl Sync for GithubCheckRun
impl Unpin for GithubCheckRun
impl UnsafeUnpin for GithubCheckRun
impl UnwindSafe for GithubCheckRun
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