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>>,
}Fields§
§name: Option<String>§workflow_name: Option<String>§status: Option<String>§url: Option<String>§is_required: Option<bool>§started_at: Option<DateTime<Utc>>§completed_at: Option<DateTime<Utc>>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
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