pub struct Milestone {
pub closed_at: Option<String>,
pub closed_issues: Option<i64>,
pub created_at: Option<String>,
pub description: Option<String>,
pub due_on: Option<String>,
pub id: Option<i64>,
pub open_issues: Option<i64>,
pub state: Option<String>,
pub title: Option<String>,
pub updated_at: Option<String>,
}
Expand description
Milestone : Milestone milestone is a collection of issues on one repository
Fields§
§closed_at: Option<String>
§closed_issues: Option<i64>
§created_at: Option<String>
§description: Option<String>
§due_on: Option<String>
§id: Option<i64>
§open_issues: Option<i64>
§state: Option<String>
StateType issue state type
title: Option<String>
§updated_at: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Milestone
impl<'de> Deserialize<'de> for Milestone
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
impl StructuralPartialEq for Milestone
Auto Trait Implementations§
impl Freeze for Milestone
impl RefUnwindSafe for Milestone
impl Send for Milestone
impl Sync for Milestone
impl Unpin for Milestone
impl UnwindSafe for Milestone
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