pub struct CheckRunCompletedCheckRunOutput {
pub annotations_count: i64,
pub annotations_url: String,
pub summary: Option<String>,
pub text: Option<String>,
pub title: Option<String>,
}
Expand description
CheckRunCompletedCheckRunOutput
JSON schema
{
"type": "object",
"required": [
"annotations_count",
"annotations_url",
"summary",
"text"
],
"properties": {
"annotations_count": {
"type": "integer"
},
"annotations_url": {
"type": "string",
"format": "uri"
},
"summary": {
"type": [
"string",
"null"
]
},
"text": {
"type": [
"string",
"null"
]
},
"title": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
Fields§
§annotations_count: i64
§annotations_url: String
§summary: Option<String>
§text: Option<String>
§title: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for CheckRunCompletedCheckRunOutput
impl Clone for CheckRunCompletedCheckRunOutput
Source§fn clone(&self) -> CheckRunCompletedCheckRunOutput
fn clone(&self) -> CheckRunCompletedCheckRunOutput
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 CheckRunCompletedCheckRunOutput
impl<'de> Deserialize<'de> for CheckRunCompletedCheckRunOutput
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<&CheckRunCompletedCheckRunOutput> for CheckRunCompletedCheckRunOutput
impl From<&CheckRunCompletedCheckRunOutput> for CheckRunCompletedCheckRunOutput
Source§fn from(value: &CheckRunCompletedCheckRunOutput) -> Self
fn from(value: &CheckRunCompletedCheckRunOutput) -> Self
Converts to this type from the input type.
Source§impl From<CheckRunCompletedCheckRunOutput> for CheckRunCompletedCheckRunOutput
impl From<CheckRunCompletedCheckRunOutput> for CheckRunCompletedCheckRunOutput
Source§fn from(value: CheckRunCompletedCheckRunOutput) -> Self
fn from(value: CheckRunCompletedCheckRunOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CheckRunCompletedCheckRunOutput
impl RefUnwindSafe for CheckRunCompletedCheckRunOutput
impl Send for CheckRunCompletedCheckRunOutput
impl Sync for CheckRunCompletedCheckRunOutput
impl Unpin for CheckRunCompletedCheckRunOutput
impl UnwindSafe for CheckRunCompletedCheckRunOutput
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