pub struct CatalogUnavailableError {
pub kind: CatalogUnavailableErrorKind,
pub message: String,
pub reason: CatalogUnavailableReason,
}Expand description
The operation is not available on this runtime. Distinct from a network failure: nothing was attempted.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§kind: CatalogUnavailableErrorKindDiscriminator: the operation is not available
message: StringHuman-readable explanation, safe to surface. Never contains a query, URL, handle, or secret.
reason: CatalogUnavailableReasonWhy the operation is unavailable.
Trait Implementations§
Source§fn clone(&self) -> CatalogUnavailableError
fn clone(&self) -> CatalogUnavailableError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§fn default() -> CatalogUnavailableError
fn default() -> CatalogUnavailableError
Returns the “default value” for a type. Read more
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
Auto Trait Implementations§
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