Struct azure_devops_rust_api::build::models::Timeline
source · pub struct Timeline {
pub timeline_reference: TimelineReference,
pub last_changed_by: Option<String>,
pub last_changed_on: Option<OffsetDateTime>,
pub records: Vec<TimelineRecord>,
}Expand description
Represents the timeline of a build.
Fields§
§timeline_reference: TimelineReference§last_changed_by: Option<String>The process or person that last changed the timeline.
last_changed_on: Option<OffsetDateTime>The time the timeline was last changed.
records: Vec<TimelineRecord>Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Timeline
impl<'de> Deserialize<'de> for Timeline
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 Timeline
impl PartialEq for Timeline
impl StructuralPartialEq for Timeline
Auto Trait Implementations§
impl Freeze for Timeline
impl RefUnwindSafe for Timeline
impl Send for Timeline
impl Sync for Timeline
impl Unpin for Timeline
impl UnwindSafe for Timeline
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