Struct octorust::types::PullRequestData[][src]

pub struct PullRequestData {
Show 48 fields pub links: PullRequestSimpleLinks, pub active_lock_reason: String, pub additions: i64, pub assignee: Option<SimpleUser>, pub assignees: Vec<SimpleUser>, pub author_association: AuthorAssociation, pub auto_merge: Option<AutoMerge>, pub base: PullRequestBase, pub body: String, pub changed_files: i64, pub closed_at: Option<DateTime<Utc>>, pub comments: i64, pub comments_url: String, pub commits: i64, pub commits_url: String, pub created_at: Option<DateTime<Utc>>, pub deletions: i64, pub diff_url: String, pub draft: bool, pub head: PullRequestHead, pub html_url: String, pub id: i64, pub issue_url: String, pub labels: Vec<LabelsData>, pub locked: bool, pub maintainer_can_modify: bool, pub merge_commit_sha: String, pub mergeable: bool, pub mergeable_state: String, pub merged: bool, pub merged_at: Option<DateTime<Utc>>, pub merged_by: Option<SimpleUser>, pub milestone: Option<Milestone>, pub node_id: String, pub number: i64, pub patch_url: String, pub rebaseable: bool, pub requested_reviewers: Vec<SimpleUser>, pub requested_teams: Vec<TeamSimple>, pub review_comment_url: String, pub review_comments: i64, pub review_comments_url: String, pub state: PullRequestState, pub statuses_url: String, pub title: String, pub updated_at: Option<DateTime<Utc>>, pub url: String, pub user: Option<SimpleUser>,
}
Expand description

Pull requests let you tell others about changes you’ve pushed to a repository on GitHub. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.

Fields

links: PullRequestSimpleLinksactive_lock_reason: Stringadditions: i64assignee: Option<SimpleUser>

Simple User

assignees: Vec<SimpleUser>author_association: AuthorAssociation

How the author is associated with the repository.

auto_merge: Option<AutoMerge>

The status of auto merging a pull request.

base: PullRequestBasebody: Stringchanged_files: i64closed_at: Option<DateTime<Utc>>comments: i64comments_url: Stringcommits: i64commits_url: Stringcreated_at: Option<DateTime<Utc>>deletions: i64diff_url: Stringdraft: bool

Pull requests let you tell others about changes you’ve pushed to a repository on GitHub. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.

head: PullRequestHeadhtml_url: Stringid: i64issue_url: Stringlabels: Vec<LabelsData>locked: boolmaintainer_can_modify: bool

Indicates whether maintainers can modify the pull request.

merge_commit_sha: Stringmergeable: boolmergeable_state: Stringmerged: boolmerged_at: Option<DateTime<Utc>>merged_by: Option<SimpleUser>

Simple User

milestone: Option<Milestone>

A collection of related issues and pull requests.

node_id: Stringnumber: i64

Number uniquely identifying the pull request within its repository.

patch_url: Stringrebaseable: bool

Pull requests let you tell others about changes you’ve pushed to a repository on GitHub. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.

requested_reviewers: Vec<SimpleUser>requested_teams: Vec<TeamSimple>review_comment_url: Stringreview_comments: i64review_comments_url: Stringstate: PullRequestState

State of this Pull Request. Either open or closed.

statuses_url: Stringtitle: String

The title of the pull request.

updated_at: Option<DateTime<Utc>>url: Stringuser: Option<SimpleUser>

Simple User

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

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

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.