pub struct TemplateInstanceObject {
pub ref_: Option<ObjectReference>,
}
Expand description
TemplateInstanceObject references an object created by a TemplateInstance.
Fields§
§ref_: Option<ObjectReference>
ref is a reference to the created object. When used under .spec, only name and namespace are used; these can contain references to parameters which will be substituted following the usual rules.
Trait Implementations§
Source§impl Clone for TemplateInstanceObject
impl Clone for TemplateInstanceObject
Source§fn clone(&self) -> TemplateInstanceObject
fn clone(&self) -> TemplateInstanceObject
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 Debug for TemplateInstanceObject
impl Debug for TemplateInstanceObject
Source§impl Default for TemplateInstanceObject
impl Default for TemplateInstanceObject
Source§fn default() -> TemplateInstanceObject
fn default() -> TemplateInstanceObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TemplateInstanceObject
impl<'de> Deserialize<'de> for TemplateInstanceObject
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
Source§impl PartialEq for TemplateInstanceObject
impl PartialEq for TemplateInstanceObject
Source§impl Serialize for TemplateInstanceObject
impl Serialize for TemplateInstanceObject
impl StructuralPartialEq for TemplateInstanceObject
Auto Trait Implementations§
impl Freeze for TemplateInstanceObject
impl RefUnwindSafe for TemplateInstanceObject
impl Send for TemplateInstanceObject
impl Sync for TemplateInstanceObject
impl Unpin for TemplateInstanceObject
impl UnwindSafe for TemplateInstanceObject
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