pub struct WebhooksMilestone3 {Show 16 fields
pub closed_at: Option<String>,
pub closed_issues: i32,
pub created_at: String,
pub creator: Option<Box<User>>,
pub description: Option<String>,
pub due_on: Option<String>,
pub html_url: String,
pub id: i32,
pub labels_url: String,
pub node_id: String,
pub number: i32,
pub open_issues: i32,
pub state: State,
pub title: String,
pub updated_at: String,
pub url: String,
}
Expand description
WebhooksMilestone3 : A collection of related issues and pull requests.
Fields§
§closed_at: Option<String>
§closed_issues: i32
§created_at: String
§creator: Option<Box<User>>
§description: Option<String>
§due_on: Option<String>
§html_url: String
§id: i32
§labels_url: String
§node_id: String
§number: i32
The number of the milestone.
open_issues: i32
§state: State
The state of the milestone.
title: String
The title of the milestone.
updated_at: String
§url: String
Implementations§
Source§impl WebhooksMilestone3
impl WebhooksMilestone3
Sourcepub fn new(
closed_at: Option<String>,
closed_issues: i32,
created_at: String,
creator: Option<User>,
description: Option<String>,
due_on: Option<String>,
html_url: String,
id: i32,
labels_url: String,
node_id: String,
number: i32,
open_issues: i32,
state: State,
title: String,
updated_at: String,
url: String,
) -> WebhooksMilestone3
pub fn new( closed_at: Option<String>, closed_issues: i32, created_at: String, creator: Option<User>, description: Option<String>, due_on: Option<String>, html_url: String, id: i32, labels_url: String, node_id: String, number: i32, open_issues: i32, state: State, title: String, updated_at: String, url: String, ) -> WebhooksMilestone3
A collection of related issues and pull requests.
Trait Implementations§
Source§impl Clone for WebhooksMilestone3
impl Clone for WebhooksMilestone3
Source§fn clone(&self) -> WebhooksMilestone3
fn clone(&self) -> WebhooksMilestone3
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 WebhooksMilestone3
impl Debug for WebhooksMilestone3
Source§impl Default for WebhooksMilestone3
impl Default for WebhooksMilestone3
Source§fn default() -> WebhooksMilestone3
fn default() -> WebhooksMilestone3
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhooksMilestone3
impl<'de> Deserialize<'de> for WebhooksMilestone3
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 PartialEq for WebhooksMilestone3
impl PartialEq for WebhooksMilestone3
Source§impl Serialize for WebhooksMilestone3
impl Serialize for WebhooksMilestone3
impl StructuralPartialEq for WebhooksMilestone3
Auto Trait Implementations§
impl Freeze for WebhooksMilestone3
impl RefUnwindSafe for WebhooksMilestone3
impl Send for WebhooksMilestone3
impl Sync for WebhooksMilestone3
impl Unpin for WebhooksMilestone3
impl UnwindSafe for WebhooksMilestone3
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