pub struct PullRequestCheck {
pub name: Option<String>,
pub workflow_name: Option<String>,
pub status: Option<String>,
pub url: Option<String>,
pub is_required: Option<bool>,
pub started_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
}Expand description
ALPHA A pull request check.
Fields§
§name: Option<String>The name of the check.
workflow_name: Option<String>The name of the workflow that triggered the check.
status: Option<String>The status of the check.
url: Option<String>The URL of the check.
is_required: Option<bool>Whether the check is required.
started_at: Option<DateTime<Utc>>The date/time at which when the check was started.
completed_at: Option<DateTime<Utc>>The date/time at which when the check was completed.
Trait Implementations§
Source§impl Clone for PullRequestCheck
impl Clone for PullRequestCheck
Source§fn clone(&self) -> PullRequestCheck
fn clone(&self) -> PullRequestCheck
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 PullRequestCheck
impl Debug for PullRequestCheck
Source§impl Default for PullRequestCheck
impl Default for PullRequestCheck
Source§fn default() -> PullRequestCheck
fn default() -> PullRequestCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestCheckwhere
PullRequestCheck: Default,
impl<'de> Deserialize<'de> for PullRequestCheckwhere
PullRequestCheck: Default,
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 GraphQLFields for PullRequestCheck
impl GraphQLFields for PullRequestCheck
Auto Trait Implementations§
impl Freeze for PullRequestCheck
impl RefUnwindSafe for PullRequestCheck
impl Send for PullRequestCheck
impl Sync for PullRequestCheck
impl Unpin for PullRequestCheck
impl UnwindSafe for PullRequestCheck
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