Struct azure_devops_rust_api::release::models::Change
source · pub struct Change {
pub author: Option<IdentityRef>,
pub change_type: Option<String>,
pub display_uri: Option<String>,
pub id: Option<String>,
pub location: Option<String>,
pub message: Option<String>,
pub pushed_by: Option<IdentityRef>,
pub timestamp: Option<OffsetDateTime>,
}
Expand description
Represents a change associated with a build.
Fields§
§change_type: Option<String>
The type of source. “TfsVersionControl”, “TfsGit”, etc.
display_uri: Option<String>
The location of a user-friendly representation of the resource.
id: Option<String>
Something that identifies the change. For a commit, this would be the SHA1. For a TFVC changeset, this would be the changeset id.
location: Option<String>
The location of the full representation of the resource.
message: Option<String>
A description of the change. This might be a commit message or changeset description.
pushed_by: Option<IdentityRef>
§timestamp: Option<OffsetDateTime>
A timestamp for the change.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Change
impl<'de> Deserialize<'de> for Change
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 Change
impl PartialEq for Change
impl StructuralPartialEq for Change
Auto Trait Implementations§
impl RefUnwindSafe for Change
impl Send for Change
impl Sync for Change
impl Unpin for Change
impl UnwindSafe for Change
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