pub struct WorkflowRunPullRequestsItemBase {
pub ref_: String,
pub repo: RepoRef,
pub sha: String,
}
Expand description
WorkflowRunPullRequestsItemBase
JSON schema
{
"type": "object",
"required": [
"ref",
"repo",
"sha"
],
"properties": {
"ref": {
"type": "string"
},
"repo": {
"$ref": "#/definitions/repo-ref"
},
"sha": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§ref_: String
§repo: RepoRef
§sha: String
Implementations§
Trait Implementations§
Source§impl Clone for WorkflowRunPullRequestsItemBase
impl Clone for WorkflowRunPullRequestsItemBase
Source§fn clone(&self) -> WorkflowRunPullRequestsItemBase
fn clone(&self) -> WorkflowRunPullRequestsItemBase
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<'de> Deserialize<'de> for WorkflowRunPullRequestsItemBase
impl<'de> Deserialize<'de> for WorkflowRunPullRequestsItemBase
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 From<&WorkflowRunPullRequestsItemBase> for WorkflowRunPullRequestsItemBase
impl From<&WorkflowRunPullRequestsItemBase> for WorkflowRunPullRequestsItemBase
Source§fn from(value: &WorkflowRunPullRequestsItemBase) -> Self
fn from(value: &WorkflowRunPullRequestsItemBase) -> Self
Converts to this type from the input type.
Source§impl From<WorkflowRunPullRequestsItemBase> for WorkflowRunPullRequestsItemBase
impl From<WorkflowRunPullRequestsItemBase> for WorkflowRunPullRequestsItemBase
Source§fn from(value: WorkflowRunPullRequestsItemBase) -> Self
fn from(value: WorkflowRunPullRequestsItemBase) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkflowRunPullRequestsItemBase
impl RefUnwindSafe for WorkflowRunPullRequestsItemBase
impl Send for WorkflowRunPullRequestsItemBase
impl Sync for WorkflowRunPullRequestsItemBase
impl Unpin for WorkflowRunPullRequestsItemBase
impl UnwindSafe for WorkflowRunPullRequestsItemBase
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