#[non_exhaustive]pub enum TextEditorCodeExecutionToolResultErrorCode {
Known(TextEditorCodeExecutionToolResultErrorCodeKnown),
Unknown(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Known(TextEditorCodeExecutionToolResultErrorCodeKnown)
Unknown(String)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TextEditorCodeExecutionToolResultErrorCode
impl<'de> Deserialize<'de> for TextEditorCodeExecutionToolResultErrorCode
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TextEditorCodeExecutionToolResultErrorCode
impl StructuralPartialEq for TextEditorCodeExecutionToolResultErrorCode
Auto Trait Implementations§
impl Freeze for TextEditorCodeExecutionToolResultErrorCode
impl RefUnwindSafe for TextEditorCodeExecutionToolResultErrorCode
impl Send for TextEditorCodeExecutionToolResultErrorCode
impl Sync for TextEditorCodeExecutionToolResultErrorCode
impl Unpin for TextEditorCodeExecutionToolResultErrorCode
impl UnsafeUnpin for TextEditorCodeExecutionToolResultErrorCode
impl UnwindSafe for TextEditorCodeExecutionToolResultErrorCode
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