pub struct HasMilestonesFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub active_milestones_collection_link: Url,
pub all_milestones_collection_link: Url,
}Expand description
Representation of the has_milestones-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
active_milestones_collection_link: UrlThe visible and active milestones associated with this object, ordered by date expected.
all_milestones_collection_link: UrlAll milestones associated with this object, ordered by date expected.
Implementations§
Source§impl HasMilestonesFull
impl HasMilestonesFull
Sourcepub fn self_(&self) -> Option<HasMilestones>
pub fn self_(&self) -> Option<HasMilestones>
The canonical link to this resource.
Sourcepub fn set_self_(&mut self, value: Option<HasMilestones>)
pub fn set_self_(&mut self, value: Option<HasMilestones>)
Set the self_link value.
Sourcepub fn active_milestones<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, MilestonePage>, Error>
pub fn active_milestones<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, MilestonePage>, Error>
The visible and active milestones associated with this object, ordered by date expected.
Sourcepub fn all_milestones<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, MilestonePage>, Error>
pub fn all_milestones<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, MilestonePage>, Error>
All milestones associated with this object, ordered by date expected.
Trait Implementations§
Source§impl Clone for HasMilestonesFull
impl Clone for HasMilestonesFull
Source§fn clone(&self) -> HasMilestonesFull
fn clone(&self) -> HasMilestonesFull
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 HasMilestonesFull
impl Debug for HasMilestonesFull
Source§impl<'de> Deserialize<'de> for HasMilestonesFull
impl<'de> Deserialize<'de> for HasMilestonesFull
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 HasMilestonesFull
impl PartialEq for HasMilestonesFull
Source§impl Serialize for HasMilestonesFull
impl Serialize for HasMilestonesFull
impl StructuralPartialEq for HasMilestonesFull
Auto Trait Implementations§
impl Freeze for HasMilestonesFull
impl RefUnwindSafe for HasMilestonesFull
impl Send for HasMilestonesFull
impl Sync for HasMilestonesFull
impl Unpin for HasMilestonesFull
impl UnwindSafe for HasMilestonesFull
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