Struct azure_devops_rust_api::build::models::Change
source · pub struct Change {
pub author: Option<IdentityRef>,
pub display_uri: Option<String>,
pub id: Option<String>,
pub location: Option<String>,
pub message: Option<String>,
pub message_truncated: Option<bool>,
pub pusher: Option<String>,
pub timestamp: Option<OffsetDateTime>,
pub type_: Option<String>,
}
Expand description
Represents a change associated with a build.
Fields§
§display_uri: Option<String>
The location of a user-friendly representation of the resource.
id: Option<String>
The identifier for 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>
The description of the change. This might be a commit message or changeset description.
message_truncated: Option<bool>
Indicates whether the message was truncated.
pusher: Option<String>
The person or process that pushed the change.
timestamp: Option<OffsetDateTime>
The timestamp for the change.
type_: Option<String>
The type of change. “commit”, “changeset”, etc.
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