Struct azure_devops_rust_api::build::models::TimelineReference
source · pub struct TimelineReference {
pub change_id: Option<i32>,
pub id: Option<String>,
pub url: Option<String>,
}Expand description
Represents a reference to a timeline.
Fields§
§change_id: Option<i32>The change ID.
id: Option<String>The ID of the timeline.
url: Option<String>The REST URL of the timeline.
Implementations§
Trait Implementations§
source§impl Clone for TimelineReference
impl Clone for TimelineReference
source§fn clone(&self) -> TimelineReference
fn clone(&self) -> TimelineReference
Returns a copy 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 TimelineReference
impl Debug for TimelineReference
source§impl Default for TimelineReference
impl Default for TimelineReference
source§fn default() -> TimelineReference
fn default() -> TimelineReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TimelineReference
impl<'de> Deserialize<'de> for TimelineReference
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 TimelineReference
impl PartialEq for TimelineReference
source§fn eq(&self, other: &TimelineReference) -> bool
fn eq(&self, other: &TimelineReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TimelineReference
impl Serialize for TimelineReference
impl StructuralPartialEq for TimelineReference
Auto Trait Implementations§
impl RefUnwindSafe for TimelineReference
impl Send for TimelineReference
impl Sync for TimelineReference
impl Unpin for TimelineReference
impl UnwindSafe for TimelineReference
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