pub struct CatalogSelectionInvalid {
pub kind: CatalogSelectionInvalidKind,
pub message: String,
}Expand description
The selection reference was malformed or unknown.
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: CatalogSelectionInvalidKindDiscriminator for this typed selection rejection
message: StringHuman-readable explanation safe to surface. Never contains the presented reference or private candidate state.
Trait Implementations§
Source§impl Clone for CatalogSelectionInvalid
impl Clone for CatalogSelectionInvalid
Source§impl Debug for CatalogSelectionInvalid
impl Debug for CatalogSelectionInvalid
Source§impl Default for CatalogSelectionInvalid
impl Default for CatalogSelectionInvalid
Source§impl<'de> Deserialize<'de> for CatalogSelectionInvalid
impl<'de> Deserialize<'de> for CatalogSelectionInvalid
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§
impl Freeze for CatalogSelectionInvalid
impl RefUnwindSafe for CatalogSelectionInvalid
impl Send for CatalogSelectionInvalid
impl Sync for CatalogSelectionInvalid
impl Unpin for CatalogSelectionInvalid
impl UnsafeUnpin for CatalogSelectionInvalid
impl UnwindSafe for CatalogSelectionInvalid
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