pub struct AutoscalingRunnerSetTemplateMetadata {
pub annotations: Option<BTreeMap<String, String>>,
pub finalizers: Option<Vec<String>>,
pub labels: Option<BTreeMap<String, String>>,
pub name: Option<String>,
pub namespace: Option<String>,
}Expand description
Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
Fields§
§annotations: Option<BTreeMap<String, String>>§finalizers: Option<Vec<String>>§labels: Option<BTreeMap<String, String>>§name: Option<String>§namespace: Option<String>Trait Implementations§
Source§impl Clone for AutoscalingRunnerSetTemplateMetadata
impl Clone for AutoscalingRunnerSetTemplateMetadata
Source§fn clone(&self) -> AutoscalingRunnerSetTemplateMetadata
fn clone(&self) -> AutoscalingRunnerSetTemplateMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AutoscalingRunnerSetTemplateMetadata
impl Default for AutoscalingRunnerSetTemplateMetadata
Source§fn default() -> AutoscalingRunnerSetTemplateMetadata
fn default() -> AutoscalingRunnerSetTemplateMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoscalingRunnerSetTemplateMetadata
impl<'de> Deserialize<'de> for AutoscalingRunnerSetTemplateMetadata
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 AutoscalingRunnerSetTemplateMetadata
impl PartialEq for AutoscalingRunnerSetTemplateMetadata
Source§fn eq(&self, other: &AutoscalingRunnerSetTemplateMetadata) -> bool
fn eq(&self, other: &AutoscalingRunnerSetTemplateMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutoscalingRunnerSetTemplateMetadata
Auto Trait Implementations§
impl Freeze for AutoscalingRunnerSetTemplateMetadata
impl RefUnwindSafe for AutoscalingRunnerSetTemplateMetadata
impl Send for AutoscalingRunnerSetTemplateMetadata
impl Sync for AutoscalingRunnerSetTemplateMetadata
impl Unpin for AutoscalingRunnerSetTemplateMetadata
impl UnsafeUnpin for AutoscalingRunnerSetTemplateMetadata
impl UnwindSafe for AutoscalingRunnerSetTemplateMetadata
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