pub struct CheckRunCreatedCheckRunOutput {
pub annotations_count: i64,
pub annotations_url: String,
pub summary: Option<String>,
pub text: Option<String>,
pub title: Option<String>,
}
Expand description
CheckRunCreatedCheckRunOutput
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 CheckRunCreatedCheckRunOutput
impl Clone for CheckRunCreatedCheckRunOutput
Source§fn clone(&self) -> CheckRunCreatedCheckRunOutput
fn clone(&self) -> CheckRunCreatedCheckRunOutput
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 CheckRunCreatedCheckRunOutput
impl<'de> Deserialize<'de> for CheckRunCreatedCheckRunOutput
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<&CheckRunCreatedCheckRunOutput> for CheckRunCreatedCheckRunOutput
impl From<&CheckRunCreatedCheckRunOutput> for CheckRunCreatedCheckRunOutput
Source§fn from(value: &CheckRunCreatedCheckRunOutput) -> Self
fn from(value: &CheckRunCreatedCheckRunOutput) -> Self
Converts to this type from the input type.
Source§impl From<CheckRunCreatedCheckRunOutput> for CheckRunCreatedCheckRunOutput
impl From<CheckRunCreatedCheckRunOutput> for CheckRunCreatedCheckRunOutput
Source§fn from(value: CheckRunCreatedCheckRunOutput) -> Self
fn from(value: CheckRunCreatedCheckRunOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CheckRunCreatedCheckRunOutput
impl RefUnwindSafe for CheckRunCreatedCheckRunOutput
impl Send for CheckRunCreatedCheckRunOutput
impl Sync for CheckRunCreatedCheckRunOutput
impl Unpin for CheckRunCreatedCheckRunOutput
impl UnwindSafe for CheckRunCreatedCheckRunOutput
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