[][src]Struct rusoto_codecommit::ReplaceContentEntry

pub struct ReplaceContentEntry {
    pub content: Option<Bytes>,
    pub file_mode: Option<String>,
    pub file_path: String,
    pub replacement_type: String,
}

Information about a replacement content entry in the conflict of a merge or pull request operation.

Fields

content: Option<Bytes>

The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.

file_mode: Option<String>

The file mode to apply during conflict resoltion.

file_path: String

The path of the conflicting file.

replacement_type: String

The replacement type to use when determining how to resolve the conflict.

Trait Implementations

impl Clone for ReplaceContentEntry[src]

impl Default for ReplaceContentEntry[src]

impl PartialEq<ReplaceContentEntry> for ReplaceContentEntry[src]

impl Debug for ReplaceContentEntry[src]

impl StructuralPartialEq for ReplaceContentEntry[src]

impl Serialize for ReplaceContentEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self