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