pub struct TimelineProjectSeriesDiff {
pub is_development_focus: Option<bool>,
pub landmarks: Option<Vec<String>>,
pub name: Option<String>,
pub project_link: Option<Url>,
pub status: Option<Status>,
pub uri: Option<Url>,
}Expand description
Representation of the timeline_project_series-diff resource
Fields§
§is_development_focus: Option<bool>Is series the development focus of the project
landmarks: Option<Vec<String>>List of milestones and releases
name: Option<String>Name
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: Option<Url>Project
status: Option<Status>Status
uri: Option<Url>Series URI
foo
Implementations§
Trait Implementations§
Source§impl Clone for TimelineProjectSeriesDiff
impl Clone for TimelineProjectSeriesDiff
Source§fn clone(&self) -> TimelineProjectSeriesDiff
fn clone(&self) -> TimelineProjectSeriesDiff
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 TimelineProjectSeriesDiff
impl Debug for TimelineProjectSeriesDiff
Source§impl Default for TimelineProjectSeriesDiff
impl Default for TimelineProjectSeriesDiff
Source§impl<'de> Deserialize<'de> for TimelineProjectSeriesDiff
impl<'de> Deserialize<'de> for TimelineProjectSeriesDiff
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 TimelineProjectSeriesDiff
Auto Trait Implementations§
impl Freeze for TimelineProjectSeriesDiff
impl RefUnwindSafe for TimelineProjectSeriesDiff
impl Send for TimelineProjectSeriesDiff
impl Sync for TimelineProjectSeriesDiff
impl Unpin for TimelineProjectSeriesDiff
impl UnwindSafe for TimelineProjectSeriesDiff
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