pub struct TimelineProjectSeriesFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub is_development_focus: bool,
pub landmarks: Vec<String>,
pub name: String,
pub project_link: Url,
pub status: Status,
pub uri: Url,
}Expand description
Representation of the timeline_project_series-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.
is_development_focus: boolIs series the development focus of the project
landmarks: Vec<String>List of milestones and releases
name: StringName
The name of the series is a short, unique name that identifies it, being used in URLs. It must be all lowercase, with no special characters. For example, ‘2.0’ or ‘trunk’.
project_link: UrlProject
status: StatusStatus
uri: UrlSeries URI
foo
Implementations§
Source§impl TimelineProjectSeriesFull
impl TimelineProjectSeriesFull
Sourcepub fn self_(&self) -> Option<TimelineProjectSeries>
pub fn self_(&self) -> Option<TimelineProjectSeries>
The canonical link to this resource.
Sourcepub fn set_self_(&mut self, value: Option<TimelineProjectSeries>)
pub fn set_self_(&mut self, value: Option<TimelineProjectSeries>)
Set the self_link value.
Sourcepub fn set_project(&mut self, value: Project)
pub fn set_project(&mut self, value: Project)
Set the project_link value.
Trait Implementations§
Source§impl Clone for TimelineProjectSeriesFull
impl Clone for TimelineProjectSeriesFull
Source§fn clone(&self) -> TimelineProjectSeriesFull
fn clone(&self) -> TimelineProjectSeriesFull
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 TimelineProjectSeriesFull
impl Debug for TimelineProjectSeriesFull
Source§impl<'de> Deserialize<'de> for TimelineProjectSeriesFull
impl<'de> Deserialize<'de> for TimelineProjectSeriesFull
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 TimelineProjectSeriesFull
Auto Trait Implementations§
impl Freeze for TimelineProjectSeriesFull
impl RefUnwindSafe for TimelineProjectSeriesFull
impl Send for TimelineProjectSeriesFull
impl Sync for TimelineProjectSeriesFull
impl Unpin for TimelineProjectSeriesFull
impl UnwindSafe for TimelineProjectSeriesFull
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