pub struct SimpleCheckSuite {Show 14 fields
pub after: Option<Option<String>>,
pub app: Option<Option<Box<Integration>>>,
pub before: Option<Option<String>>,
pub conclusion: Option<Option<Conclusion>>,
pub created_at: Option<String>,
pub head_branch: Option<Option<String>>,
pub head_sha: Option<String>,
pub id: Option<i32>,
pub node_id: Option<String>,
pub pull_requests: Option<Vec<PullRequestMinimal>>,
pub repository: Option<Box<MinimalRepository>>,
pub status: Option<Status>,
pub updated_at: Option<String>,
pub url: Option<String>,
}
Expand description
SimpleCheckSuite : A suite of checks performed on the code of a given code change
Fields§
§after: Option<Option<String>>
§app: Option<Option<Box<Integration>>>
§before: Option<Option<String>>
§conclusion: Option<Option<Conclusion>>
§created_at: Option<String>
§head_branch: Option<Option<String>>
§head_sha: Option<String>
The SHA of the head commit that is being checked.
id: Option<i32>
§node_id: Option<String>
§pull_requests: Option<Vec<PullRequestMinimal>>
§repository: Option<Box<MinimalRepository>>
§status: Option<Status>
§updated_at: Option<String>
§url: Option<String>
Implementations§
Source§impl SimpleCheckSuite
impl SimpleCheckSuite
Sourcepub fn new() -> SimpleCheckSuite
pub fn new() -> SimpleCheckSuite
A suite of checks performed on the code of a given code change
Trait Implementations§
Source§impl Clone for SimpleCheckSuite
impl Clone for SimpleCheckSuite
Source§fn clone(&self) -> SimpleCheckSuite
fn clone(&self) -> SimpleCheckSuite
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 SimpleCheckSuite
impl Debug for SimpleCheckSuite
Source§impl Default for SimpleCheckSuite
impl Default for SimpleCheckSuite
Source§fn default() -> SimpleCheckSuite
fn default() -> SimpleCheckSuite
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleCheckSuite
impl<'de> Deserialize<'de> for SimpleCheckSuite
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
Source§impl PartialEq for SimpleCheckSuite
impl PartialEq for SimpleCheckSuite
Source§impl Serialize for SimpleCheckSuite
impl Serialize for SimpleCheckSuite
impl StructuralPartialEq for SimpleCheckSuite
Auto Trait Implementations§
impl Freeze for SimpleCheckSuite
impl RefUnwindSafe for SimpleCheckSuite
impl Send for SimpleCheckSuite
impl Sync for SimpleCheckSuite
impl Unpin for SimpleCheckSuite
impl UnwindSafe for SimpleCheckSuite
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