[][src]Struct k8s_openapi::apimachinery::pkg::apis::meta::v1::ManagedFieldsEntry

pub struct ManagedFieldsEntry {
    pub api_version: Option<String>,
    pub fields_type: Option<String>,
    pub fields_v1: Option<FieldsV1>,
    pub manager: Option<String>,
    pub operation: Option<String>,
    pub time: Option<Time>,
}

ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.

Fields

api_version: Option<String>

APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.

fields_type: Option<String>

FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"

fields_v1: Option<FieldsV1>

FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.

manager: Option<String>

Manager is an identifier of the workflow managing these fields.

operation: Option<String>

Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.

time: Option<Time>

Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'

Trait Implementations

impl Clone for ManagedFieldsEntry[src]

impl Debug for ManagedFieldsEntry[src]

impl Default for ManagedFieldsEntry[src]

impl<'de> Deserialize<'de> for ManagedFieldsEntry[src]

impl PartialEq<ManagedFieldsEntry> for ManagedFieldsEntry[src]

impl Serialize for ManagedFieldsEntry[src]

impl StructuralPartialEq for ManagedFieldsEntry[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.