Enum kube_client::error::DiscoveryError
source · pub enum DiscoveryError {
InvalidGroupVersion(String),
MissingKind(String),
MissingApiGroup(String),
MissingResource(String),
EmptyApiGroup(String),
}
Available on crate features
config
or client
only.Expand description
Possible errors when using API discovery
Variants§
InvalidGroupVersion(String)
Invalid GroupVersion
MissingKind(String)
Missing Kind
MissingApiGroup(String)
Missing ApiGroup
MissingResource(String)
MissingResource
EmptyApiGroup(String)
Empty ApiGroup
Trait Implementations§
source§impl Debug for DiscoveryError
impl Debug for DiscoveryError
source§impl Display for DiscoveryError
impl Display for DiscoveryError
source§impl Error for DiscoveryError
impl Error for DiscoveryError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()