pub struct CheckRun {
pub id: i32,
pub name: String,
pub head_sha: String,
pub url: String,
pub check_suite: CheckSuite,
pub details_url: Option<String>,
pub external_id: Option<String>,
pub status: Option<CheckRunState>,
pub started_at: Option<String>,
pub conclusion: Option<Conclusion>,
pub completed_at: Option<String>,
pub actions: Option<Vec<Action>>,
}Fields§
§id: i32§name: String§head_sha: String§url: String§check_suite: CheckSuite§details_url: Option<String>§external_id: Option<String>§status: Option<CheckRunState>§started_at: Option<String>§conclusion: Option<Conclusion>§completed_at: Option<String>§actions: Option<Vec<Action>>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 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 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