pub struct APIGroupDiscoveryList {
pub metadata: Option<ListMeta>,
pub items: Vec<APIGroupDiscovery>,
}Expand description
APIGroupDiscoveryList is a resource containing a list of APIGroupDiscovery. This is one of the types that can be returned from the /api and /apis endpoint and contains an aggregated list of API resources (built-ins, Custom Resource Definitions, resources from aggregated servers) that a cluster supports.
Fields§
§metadata: Option<ListMeta>Standard list metadata
items: Vec<APIGroupDiscovery>items is the list of groups for discovery. The groups are listed in priority order.
Trait Implementations§
Source§impl Clone for APIGroupDiscoveryList
impl Clone for APIGroupDiscoveryList
Source§fn clone(&self) -> APIGroupDiscoveryList
fn clone(&self) -> APIGroupDiscoveryList
Returns a duplicate 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 Debug for APIGroupDiscoveryList
impl Debug for APIGroupDiscoveryList
Source§impl Default for APIGroupDiscoveryList
impl Default for APIGroupDiscoveryList
Source§fn default() -> APIGroupDiscoveryList
fn default() -> APIGroupDiscoveryList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for APIGroupDiscoveryList
impl<'de> Deserialize<'de> for APIGroupDiscoveryList
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 PartialEq for APIGroupDiscoveryList
impl PartialEq for APIGroupDiscoveryList
Source§impl Serialize for APIGroupDiscoveryList
impl Serialize for APIGroupDiscoveryList
impl StructuralPartialEq for APIGroupDiscoveryList
Auto Trait Implementations§
impl Freeze for APIGroupDiscoveryList
impl RefUnwindSafe for APIGroupDiscoveryList
impl Send for APIGroupDiscoveryList
impl Sync for APIGroupDiscoveryList
impl Unpin for APIGroupDiscoveryList
impl UnwindSafe for APIGroupDiscoveryList
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