Struct google_tagmanager2::MergeConflict[][src]

pub struct MergeConflict {
    pub entity_in_base_version: Option<Entity>,
    pub entity_in_workspace: Option<Entity>,
}

Represents a merge conflict.

This type is not used in any activity, and only used as part of another schema.

Fields

The base version entity (since the latest sync operation) that has conflicting changes compared to the workspace. If this field is missing, it means the workspace entity is deleted from the base version.

The workspace entity that has conflicting changes compared to the base version. If an entity is deleted in a workspace, it will still appear with a deleted change status.

Trait Implementations

impl Default for MergeConflict
[src]

Returns the "default value" for a type. Read more

impl Clone for MergeConflict
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MergeConflict
[src]

Formats the value using the given formatter. Read more

impl Part for MergeConflict
[src]

Auto Trait Implementations