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
sourceimpl<T: Clone> Clone for List<T> where
T: ListableResource,
impl<T: Clone> Clone for List<T> where
T: ListableResource,
sourceimpl<T: Debug> Debug for List<T> where
T: ListableResource,
impl<T: Debug> Debug for List<T> where
T: ListableResource,
sourceimpl<T: Default> Default for List<T> where
T: ListableResource,
impl<T: Default> Default for List<T> where
T: ListableResource,
sourceimpl<'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,
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<T> Metadata for List<T> where
T: ListableResource,
impl<T> Metadata for List<T> where
T: ListableResource,
sourceimpl<T> Resource for List<T> where
T: ListableResource,
impl<T> Resource for List<T> where
T: ListableResource,
sourceconst API_VERSION: &'static str = ::API_VERSION
const API_VERSION: &'static str = ::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 more
sourceconst GROUP: &'static str = ::GROUP
const GROUP: &'static str = ::GROUP
The group of the resource, or the empty string if the resource doesn’t have a group.
sourceconst 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
sourceimpl<T> Serialize for List<T> where
T: Serialize + ListableResource,
impl<T> Serialize for List<T> where
T: Serialize + ListableResource,
impl<T> StructuralPartialEq for List<T> where
T: ListableResource,
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more