pub struct LocalObjectReference {
pub group: Group,
pub kind: Kind,
pub name: ObjectName,
}
Expand description
LocalObjectReference identifies an API object within the namespace of the referrer. The API object must be valid in the cluster; the Group and Kind must be registered in the cluster for this reference to be valid.
References to objects with invalid Group and Kind are not valid, and must be rejected by the implementation, with appropriate Conditions set on the containing object.
Fields§
§group: Group
Group is the group of the referent. For example, “networking.k8s.io”. When unspecified (empty string), core API group is inferred.
kind: Kind
Kind is kind of the referent. For example “HTTPRoute” or “Service”.
name: ObjectName
Name is the name of the referent.
Trait Implementations§
Source§impl Clone for LocalObjectReference
impl Clone for LocalObjectReference
Source§fn clone(&self) -> LocalObjectReference
fn clone(&self) -> LocalObjectReference
Returns a copy 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 LocalObjectReference
impl Debug for LocalObjectReference
Source§impl<'de> Deserialize<'de> for LocalObjectReference
impl<'de> Deserialize<'de> for LocalObjectReference
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 JsonSchema for LocalObjectReference
impl JsonSchema for LocalObjectReference
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for LocalObjectReference
impl PartialEq for LocalObjectReference
Source§impl Serialize for LocalObjectReference
impl Serialize for LocalObjectReference
impl Eq for LocalObjectReference
impl StructuralPartialEq for LocalObjectReference
Auto Trait Implementations§
impl Freeze for LocalObjectReference
impl RefUnwindSafe for LocalObjectReference
impl Send for LocalObjectReference
impl Sync for LocalObjectReference
impl Unpin for LocalObjectReference
impl UnwindSafe for LocalObjectReference
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