pub struct ObjectList<T>where
T: Clone,{
pub types: TypeMeta,
pub metadata: ListMeta,
pub items: Vec<T>,
}
Available on crate feature
client
only.Expand description
A generic Kubernetes object list
This is used instead of a full struct for DeploymentList
, PodList
, etc.
Kubernetes’ API always seem to expose list structs in this manner.
Note that this is only used internally within reflectors and informers,
and is generally produced from list/watch/delete collection queries on an Resource
.
This is almost equivalent to k8s_openapi::List<T>
, but iterable.
Fields§
§types: TypeMeta
The type fields, always present
metadata: ListMeta
ListMeta - only really used for its resourceVersion
See ListMeta
items: Vec<T>
The items we are actually interested in. In practice; T := Resource<T,U>
.
Implementations§
Source§impl<T> ObjectList<T>where
T: Clone,
impl<T> ObjectList<T>where
T: Clone,
Sourcepub fn iter(&self) -> impl Iterator<Item = &T>
pub fn iter(&self) -> impl Iterator<Item = &T>
iter
returns an Iterator over the elements of this ObjectList
§Example
use kube::api::{ListMeta, ObjectList, TypeMeta};
use k8s_openapi::api::core::v1::Pod;
let types: TypeMeta = TypeMeta::list::<Pod>();
let metadata: ListMeta = Default::default();
let items = vec![1, 2, 3];
let first = objectlist.iter().next();
println!("First element: {:?}", first); // prints "First element: Some(1)"
Sourcepub fn iter_mut(&mut self) -> impl Iterator<Item = &mut T>
pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut T>
iter_mut
returns an Iterator of mutable references to the elements of this ObjectList
§Example
use kube::api::{ListMeta, ObjectList, TypeMeta};
use k8s_openapi::api::core::v1::Pod;
let types: TypeMeta = TypeMeta::list::<Pod>();
let metadata: ListMeta = Default::default();
let items = vec![1, 2, 3];
let mut first = objectlist.iter_mut().next();
// Reassign the value in first
if let Some(elem) = first {
*elem = 2;
println!("First element: {:?}", elem); // prints "First element: 2"
}
Trait Implementations§
Source§impl<T> Clone for ObjectList<T>where
T: Clone,
impl<T> Clone for ObjectList<T>where
T: Clone,
Source§fn clone(&self) -> ObjectList<T>
fn clone(&self) -> ObjectList<T>
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<T> Debug for ObjectList<T>
impl<T> Debug for ObjectList<T>
Source§impl<'de, T> Deserialize<'de> for ObjectList<T>
impl<'de, T> Deserialize<'de> for ObjectList<T>
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObjectList<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObjectList<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a, T> IntoIterator for &'a ObjectList<T>where
T: Clone,
impl<'a, T> IntoIterator for &'a ObjectList<T>where
T: Clone,
Source§impl<'a, T> IntoIterator for &'a mut ObjectList<T>where
T: Clone,
impl<'a, T> IntoIterator for &'a mut ObjectList<T>where
T: Clone,
Source§impl<T> IntoIterator for ObjectList<T>where
T: Clone,
impl<T> IntoIterator for ObjectList<T>where
T: Clone,
Source§type IntoIter = IntoIter<<ObjectList<T> as IntoIterator>::Item>
type IntoIter = IntoIter<<ObjectList<T> as IntoIterator>::Item>
Which kind of iterator are we turning this into?
Source§fn into_iter(self) -> <ObjectList<T> as IntoIterator>::IntoIter
fn into_iter(self) -> <ObjectList<T> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
Source§impl<T> Serialize for ObjectList<T>
impl<T> Serialize for ObjectList<T>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<T> Freeze for ObjectList<T>
impl<T> RefUnwindSafe for ObjectList<T>where
T: RefUnwindSafe,
impl<T> Send for ObjectList<T>where
T: Send,
impl<T> Sync for ObjectList<T>where
T: Sync,
impl<T> Unpin for ObjectList<T>where
T: Unpin,
impl<T> UnwindSafe for ObjectList<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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more