Enum kube_client::error::DiscoveryError
source · pub enum DiscoveryError {
InvalidGroupVersion(String),
MissingKind(String),
MissingApiGroup(String),
MissingResource(String),
EmptyApiGroup(String),
}
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)>
Returns 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()
Auto Trait Implementations§
impl Freeze for DiscoveryError
impl RefUnwindSafe for DiscoveryError
impl Send for DiscoveryError
impl Sync for DiscoveryError
impl Unpin for DiscoveryError
impl UnwindSafe for DiscoveryError
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