Struct k8s_gateway_api::LocalObjectReference
source · [−]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: GroupGroup is the group of the referent. For example, “networking.k8s.io”. When unspecified (empty string), core API group is inferred.
kind: KindKind is kind of the referent. For example “HTTPRoute” or “Service”.
name: ObjectNameName is the name of the referent.
Trait Implementations
sourceimpl Clone for LocalObjectReference
impl Clone for LocalObjectReference
sourcefn clone(&self) -> LocalObjectReference
fn clone(&self) -> LocalObjectReference
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for LocalObjectReference
impl Debug for LocalObjectReference
sourceimpl<'de> Deserialize<'de> for LocalObjectReference
impl<'de> Deserialize<'de> for LocalObjectReference
sourcefn 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
sourceimpl JsonSchema for LocalObjectReference
impl JsonSchema for LocalObjectReference
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn 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 moresourceimpl PartialEq<LocalObjectReference> for LocalObjectReference
impl PartialEq<LocalObjectReference> for LocalObjectReference
sourcefn eq(&self, other: &LocalObjectReference) -> bool
fn eq(&self, other: &LocalObjectReference) -> bool
sourceimpl Serialize for LocalObjectReference
impl Serialize for LocalObjectReference
impl Eq for LocalObjectReference
impl StructuralEq for LocalObjectReference
impl StructuralPartialEq for LocalObjectReference
Auto Trait Implementations
impl RefUnwindSafe for LocalObjectReference
impl Send for LocalObjectReference
impl Sync for LocalObjectReference
impl Unpin for LocalObjectReference
impl UnwindSafe for LocalObjectReference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more