Struct azure_devops_rust_api::git::models::GitPushEventData   
source · pub struct GitPushEventData {
    pub after_id: Option<String>,
    pub before_id: Option<String>,
    pub branch: Option<String>,
    pub commits: Vec<GitCommit>,
    pub repository: Option<GitRepository>,
}Expand description
Fields§
§after_id: Option<String>§before_id: Option<String>§branch: Option<String>§commits: Vec<GitCommit>§repository: Option<GitRepository>Implementations§
Trait Implementations§
source§impl Clone for GitPushEventData
 
impl Clone for GitPushEventData
source§fn clone(&self) -> GitPushEventData
 
fn clone(&self) -> GitPushEventData
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 GitPushEventData
 
impl Debug for GitPushEventData
source§impl Default for GitPushEventData
 
impl Default for GitPushEventData
source§fn default() -> GitPushEventData
 
fn default() -> GitPushEventData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GitPushEventData
 
impl<'de> Deserialize<'de> for GitPushEventData
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 GitPushEventData
 
impl PartialEq for GitPushEventData
source§fn eq(&self, other: &GitPushEventData) -> bool
 
fn eq(&self, other: &GitPushEventData) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for GitPushEventData
 
impl Serialize for GitPushEventData
impl StructuralPartialEq for GitPushEventData
Auto Trait Implementations§
impl RefUnwindSafe for GitPushEventData
impl Send for GitPushEventData
impl Sync for GitPushEventData
impl Unpin for GitPushEventData
impl UnwindSafe for GitPushEventData
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