pub struct MilestoneClosedMilestone {Show 16 fields
pub closed_at: DateTime<Utc>,
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: MilestoneClosedMilestoneState,
pub title: String,
pub updated_at: DateTime<Utc>,
pub url: String,
}
Expand description
MilestoneClosedMilestone
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": "string",
"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": [
"closed"
]
},
"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: DateTime<Utc>
§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: MilestoneClosedMilestoneState
§title: String
The title of the milestone.
updated_at: DateTime<Utc>
§url: String
Implementations§
Source§impl MilestoneClosedMilestone
impl MilestoneClosedMilestone
pub fn builder() -> MilestoneClosedMilestone
Trait Implementations§
Source§impl Clone for MilestoneClosedMilestone
impl Clone for MilestoneClosedMilestone
Source§fn clone(&self) -> MilestoneClosedMilestone
fn clone(&self) -> MilestoneClosedMilestone
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 MilestoneClosedMilestone
impl Debug for MilestoneClosedMilestone
Source§impl<'de> Deserialize<'de> for MilestoneClosedMilestone
impl<'de> Deserialize<'de> for MilestoneClosedMilestone
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<&MilestoneClosedMilestone> for MilestoneClosedMilestone
impl From<&MilestoneClosedMilestone> for MilestoneClosedMilestone
Source§fn from(value: &MilestoneClosedMilestone) -> Self
fn from(value: &MilestoneClosedMilestone) -> Self
Converts to this type from the input type.
Source§impl From<MilestoneClosedMilestone> for MilestoneClosedMilestone
impl From<MilestoneClosedMilestone> for MilestoneClosedMilestone
Source§fn from(value: MilestoneClosedMilestone) -> Self
fn from(value: MilestoneClosedMilestone) -> Self
Converts to this type from the input type.
Source§impl Serialize for MilestoneClosedMilestone
impl Serialize for MilestoneClosedMilestone
Auto Trait Implementations§
impl Freeze for MilestoneClosedMilestone
impl RefUnwindSafe for MilestoneClosedMilestone
impl Send for MilestoneClosedMilestone
impl Sync for MilestoneClosedMilestone
impl Unpin for MilestoneClosedMilestone
impl UnwindSafe for MilestoneClosedMilestone
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