Struct github_rest::model::issues::milestones::Milestone
source · pub struct Milestone {Show 16 fields
pub closed_issues: i64,
pub creator: Option<SimpleUser>,
pub description: Option<String>,
pub due_on: Option<String>,
pub closed_at: Option<String>,
pub id: i64,
pub node_id: String,
pub labels_url: String,
pub html_url: String,
pub number: i64,
pub open_issues: i64,
pub state: MilestoneState,
pub title: String,
pub url: String,
pub created_at: String,
pub updated_at: String,
}
Expand description
Fields§
§closed_issues: i64
§creator: Option<SimpleUser>
§description: Option<String>
§due_on: Option<String>
§closed_at: Option<String>
§id: i64
§node_id: String
§labels_url: String
§html_url: String
§number: i64
§open_issues: i64
§state: MilestoneState
§title: String
§url: String
§created_at: String
§updated_at: String
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
source§impl PartialEq<Milestone> for Milestone
impl PartialEq<Milestone> for Milestone
impl StructuralPartialEq for Milestone
Auto Trait Implementations§
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