Trait kubernetes::List[][src]

pub trait List<T> {
    fn listmeta(&self) -> Cow<ListMeta>;
fn items(&self) -> &[T];
fn items_mut(&mut self) -> &mut [T];
fn into_items(self) -> Vec<T>; }

Required Methods

Trait Implementations

impl<'a, T> IntoIterator for &'a List<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, T> IntoIterator for &'a mut List<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Implementations on Foreign Types

impl List<Value> for Value
[src]

Implementors