Struct k8s_openapi::List
source · pub struct List<T>where
T: ListableResource,{
pub items: Vec<T>,
pub metadata: ListMeta,
}
Expand description
List is a list of resources.
Fields§
§items: Vec<T>
List of objects.
metadata: ListMeta
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
Trait Implementations§
source§impl<T> DeepMerge for List<T>where
T: DeepMerge + Metadata<Ty = ObjectMeta> + ListableResource,
impl<T> DeepMerge for List<T>where T: DeepMerge + Metadata<Ty = ObjectMeta> + ListableResource,
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl<'de, T> Deserialize<'de> for List<T>where
T: Deserialize<'de> + ListableResource,
impl<'de, T> Deserialize<'de> for List<T>where T: Deserialize<'de> + ListableResource,
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<T> Metadata for List<T>where
T: ListableResource,
impl<T> Metadata for List<T>where T: ListableResource,
source§impl<T> PartialEq<List<T>> for List<T>where
T: ListableResource + PartialEq,
impl<T> PartialEq<List<T>> for List<T>where T: ListableResource + PartialEq,
source§impl<T> Resource for List<T>where
T: ListableResource,
impl<T> Resource for List<T>where T: ListableResource,
source§const API_VERSION: &'static str = <T as crate::Resource>::API_VERSION
const API_VERSION: &'static str = <T as crate::Resource>::API_VERSION
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = <T as crate::Resource>::GROUP
const GROUP: &'static str = <T as crate::Resource>::GROUP
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const KIND: &'static str = <T as crate::ListableResource>::LIST_KIND
const KIND: &'static str = <T as crate::ListableResource>::LIST_KIND
The kind of the resource. Read more
source§const URL_PATH_SEGMENT: &'static str = ""
const URL_PATH_SEGMENT: &'static str = ""
The URL path segment used to construct URLs related to this resource. Read more