pub struct UpdateK8ObjStatus<S>where
S: Spec,{
pub api_version: String,
pub kind: String,
pub metadata: UpdateItemMeta,
pub status: S::Status,
pub data: PhantomData<S>,
}Expand description
Used for updating k8obj
Fields§
§api_version: String§kind: String§metadata: UpdateItemMeta§status: S::Status§data: PhantomData<S>Implementations§
Source§impl<S> UpdateK8ObjStatus<S>where
S: Spec,
impl<S> UpdateK8ObjStatus<S>where
S: Spec,
pub fn new(status: S::Status, metadata: UpdateItemMeta) -> Self
Trait Implementations§
Source§impl<S> Clone for UpdateK8ObjStatus<S>
impl<S> Clone for UpdateK8ObjStatus<S>
Source§fn clone(&self) -> UpdateK8ObjStatus<S>
fn clone(&self) -> UpdateK8ObjStatus<S>
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<S> Debug for UpdateK8ObjStatus<S>
impl<S> Debug for UpdateK8ObjStatus<S>
Source§impl<S> Default for UpdateK8ObjStatus<S>
impl<S> Default for UpdateK8ObjStatus<S>
Source§fn default() -> UpdateK8ObjStatus<S>
fn default() -> UpdateK8ObjStatus<S>
Returns the “default value” for a type. Read more
Source§impl<'de, S> Deserialize<'de> for UpdateK8ObjStatus<S>
impl<'de, S> Deserialize<'de> for UpdateK8ObjStatus<S>
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
Auto Trait Implementations§
impl<S> Freeze for UpdateK8ObjStatus<S>
impl<S> RefUnwindSafe for UpdateK8ObjStatus<S>
impl<S> Send for UpdateK8ObjStatus<S>
impl<S> Sync for UpdateK8ObjStatus<S>
impl<S> Unpin for UpdateK8ObjStatus<S>
impl<S> UnwindSafe for UpdateK8ObjStatus<S>
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