pub struct GitConflict {Show 13 fields
pub links: Option<ReferenceLinks>,
pub conflict_id: Option<i32>,
pub conflict_path: Option<String>,
pub conflict_type: Option<ConflictType>,
pub merge_base_commit: Option<GitCommitRef>,
pub merge_origin: Option<GitMergeOriginRef>,
pub merge_source_commit: Option<GitCommitRef>,
pub merge_target_commit: Option<GitCommitRef>,
pub resolution_error: Option<ResolutionError>,
pub resolution_status: Option<ResolutionStatus>,
pub resolved_by: Option<IdentityRef>,
pub resolved_date: Option<OffsetDateTime>,
pub url: Option<String>,
}Fields§
§links: Option<ReferenceLinks>The class to represent a collection of REST reference links.
conflict_id: Option<i32>§conflict_path: Option<String>§conflict_type: Option<ConflictType>§merge_base_commit: Option<GitCommitRef>Provides properties that describe a Git commit and associated metadata.
merge_origin: Option<GitMergeOriginRef>§merge_source_commit: Option<GitCommitRef>Provides properties that describe a Git commit and associated metadata.
merge_target_commit: Option<GitCommitRef>Provides properties that describe a Git commit and associated metadata.
resolution_error: Option<ResolutionError>§resolution_status: Option<ResolutionStatus>§resolved_by: Option<IdentityRef>§resolved_date: Option<OffsetDateTime>§url: Option<String>Implementations§
Source§impl GitConflict
impl GitConflict
Trait Implementations§
Source§impl Clone for GitConflict
impl Clone for GitConflict
Source§fn clone(&self) -> GitConflict
fn clone(&self) -> GitConflict
Returns a duplicate 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 GitConflict
impl Debug for GitConflict
Source§impl Default for GitConflict
impl Default for GitConflict
Source§fn default() -> GitConflict
fn default() -> GitConflict
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitConflict
impl<'de> Deserialize<'de> for GitConflict
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 GitConflict
impl PartialEq for GitConflict
Source§impl Serialize for GitConflict
impl Serialize for GitConflict
impl StructuralPartialEq for GitConflict
Auto Trait Implementations§
impl Freeze for GitConflict
impl RefUnwindSafe for GitConflict
impl Send for GitConflict
impl Sync for GitConflict
impl Unpin for GitConflict
impl UnwindSafe for GitConflict
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