pub trait ListableResource: Resource {
    const LIST_KIND: &'static str;
}
Expand description

A trait applied to all Kubernetes resources that can be part of a corresponding list.

Associated Constants

The kind of the list type of the resource.

This is the string used in the kind field of the list type’s serialized form.

Implementors