pub struct MilestoneCreatedMilestone {Show 16 fields
pub closed_at: (),
pub closed_issues: i64,
pub created_at: DateTime<Utc>,
pub creator: User,
pub description: Option<String>,
pub due_on: Option<DateTime<Utc>>,
pub html_url: String,
pub id: i64,
pub labels_url: String,
pub node_id: String,
pub number: i64,
pub open_issues: i64,
pub state: MilestoneCreatedMilestoneState,
pub title: String,
pub updated_at: DateTime<Utc>,
pub url: String,
}
Expand description
MilestoneCreatedMilestone
JSON schema
{
"type": "object",
"required": [
"closed_at",
"closed_issues",
"created_at",
"creator",
"description",
"due_on",
"html_url",
"id",
"labels_url",
"node_id",
"number",
"open_issues",
"state",
"title",
"updated_at",
"url"
],
"properties": {
"closed_at": {
"type": "null",
"format": "date-time"
},
"closed_issues": {
"type": "integer"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"creator": {
"$ref": "#/definitions/user"
},
"description": {
"type": [
"string",
"null"
]
},
"due_on": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer"
},
"labels_url": {
"type": "string",
"format": "uri"
},
"node_id": {
"type": "string"
},
"number": {
"description": "The number of the milestone.",
"type": "integer"
},
"open_issues": {
"type": "integer"
},
"state": {
"type": "string",
"enum": [
"open"
]
},
"title": {
"description": "The title of the milestone.",
"type": "string"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
Fields§
§closed_at: ()
§closed_issues: i64
§created_at: DateTime<Utc>
§creator: User
§description: Option<String>
§due_on: Option<DateTime<Utc>>
§html_url: String
§id: i64
§labels_url: String
§node_id: String
§number: i64
The number of the milestone.
open_issues: i64
§state: MilestoneCreatedMilestoneState
§title: String
The title of the milestone.
updated_at: DateTime<Utc>
§url: String
Implementations§
Source§impl MilestoneCreatedMilestone
impl MilestoneCreatedMilestone
pub fn builder() -> MilestoneCreatedMilestone
Trait Implementations§
Source§impl Clone for MilestoneCreatedMilestone
impl Clone for MilestoneCreatedMilestone
Source§fn clone(&self) -> MilestoneCreatedMilestone
fn clone(&self) -> MilestoneCreatedMilestone
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 Debug for MilestoneCreatedMilestone
impl Debug for MilestoneCreatedMilestone
Source§impl<'de> Deserialize<'de> for MilestoneCreatedMilestone
impl<'de> Deserialize<'de> for MilestoneCreatedMilestone
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<&MilestoneCreatedMilestone> for MilestoneCreatedMilestone
impl From<&MilestoneCreatedMilestone> for MilestoneCreatedMilestone
Source§fn from(value: &MilestoneCreatedMilestone) -> Self
fn from(value: &MilestoneCreatedMilestone) -> Self
Converts to this type from the input type.
Source§impl From<MilestoneCreatedMilestone> for MilestoneCreatedMilestone
impl From<MilestoneCreatedMilestone> for MilestoneCreatedMilestone
Source§fn from(value: MilestoneCreatedMilestone) -> Self
fn from(value: MilestoneCreatedMilestone) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MilestoneCreatedMilestone
impl RefUnwindSafe for MilestoneCreatedMilestone
impl Send for MilestoneCreatedMilestone
impl Sync for MilestoneCreatedMilestone
impl Unpin for MilestoneCreatedMilestone
impl UnwindSafe for MilestoneCreatedMilestone
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