pub struct RepoMilestoneNode {
pub number: u64,
pub title: String,
pub description: Option<String>,
}Expand description
Repository milestone from GraphQL response.
Fields§
§number: u64Milestone number.
title: StringMilestone title.
description: Option<String>Milestone description.
Trait Implementations§
Source§impl Clone for RepoMilestoneNode
impl Clone for RepoMilestoneNode
Source§fn clone(&self) -> RepoMilestoneNode
fn clone(&self) -> RepoMilestoneNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepoMilestoneNode
impl Debug for RepoMilestoneNode
Source§impl<'de> Deserialize<'de> for RepoMilestoneNode
impl<'de> Deserialize<'de> for RepoMilestoneNode
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<RepoMilestoneNode> for RepoMilestone
impl From<RepoMilestoneNode> for RepoMilestone
Source§fn from(node: RepoMilestoneNode) -> Self
fn from(node: RepoMilestoneNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RepoMilestoneNode
impl RefUnwindSafe for RepoMilestoneNode
impl Send for RepoMilestoneNode
impl Sync for RepoMilestoneNode
impl Unpin for RepoMilestoneNode
impl UnsafeUnpin for RepoMilestoneNode
impl UnwindSafe for RepoMilestoneNode
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