[][src]Trait k8_diff::Changes

pub trait Changes {
    type Replace;
    type Patch;
    fn diff(
        &self,
        new: &Self
    ) -> Result<Diff<Self::Replace, Self::Patch>, DiffError>; }

Associated Types

type Replace

type Patch

Required methods

fn diff(
    &self,
    new: &Self
) -> Result<Diff<Self::Replace, Self::Patch>, DiffError>

Implementations on Foreign Types

impl Changes for Value[src][]

type Replace = Value

type Patch = PatchObject

Implementors