pub struct WorkflowRun {
Show 30 fields pub id: i64, pub name: String, pub node_id: String, pub head_branch: String, pub head_sha: String, pub run_number: i64, pub event: String, pub status: String, pub conclusion: Value, pub workflow_id: i64, pub check_suite_id: i64, pub check_suite_node_id: String, pub url: String, pub html_url: String, pub pull_requests: Vec<Value>, pub created_at: String, pub updated_at: String, pub run_attempt: i64, pub run_started_at: String, pub jobs_url: String, pub logs_url: String, pub check_suite_url: String, pub artifacts_url: String, pub cancel_url: String, pub rerun_url: String, pub previous_attempt_url: Value, pub workflow_url: String, pub head_commit: HeadCommit, pub repository: Repository, pub head_repository: Repository,
}

Fields§

§id: i64§name: String§node_id: String§head_branch: String§head_sha: String§run_number: i64§event: String§status: String§conclusion: Value§workflow_id: i64§check_suite_id: i64§check_suite_node_id: String§url: String§html_url: String§pull_requests: Vec<Value>§created_at: String§updated_at: String§run_attempt: i64§run_started_at: String§jobs_url: String§logs_url: String§check_suite_url: String§artifacts_url: String§cancel_url: String§rerun_url: String§previous_attempt_url: Value§workflow_url: String§head_commit: HeadCommit§repository: Repository§head_repository: Repository

Trait Implementations§

source§

impl Clone for WorkflowRun

source§

fn clone(&self) -> WorkflowRun

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WorkflowRun

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for WorkflowRun

source§

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 Serialize for WorkflowRun

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,