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>
impl<T> DeepMerge for List<T>
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> 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
impl<T> StructuralPartialEq for List<T>where
T: ListableResource,
Auto Trait Implementations§
impl<T> Freeze for List<T>
impl<T> RefUnwindSafe for List<T>where
T: RefUnwindSafe,
impl<T> Send for List<T>where
T: Send,
impl<T> Sync for List<T>where
T: Sync,
impl<T> Unpin for List<T>where
T: Unpin,
impl<T> UnwindSafe for List<T>where
T: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)