pub struct ClaudeErrorEnvelope {
pub envelope_type: String,
pub error: ClaudeError,
pub request_id: Option<String>,
}Fields§
§envelope_type: String§error: ClaudeError§request_id: Option<String>Trait Implementations§
Source§impl Clone for ClaudeErrorEnvelope
impl Clone for ClaudeErrorEnvelope
Source§fn clone(&self) -> ClaudeErrorEnvelope
fn clone(&self) -> ClaudeErrorEnvelope
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§impl Debug for ClaudeErrorEnvelope
impl Debug for ClaudeErrorEnvelope
Source§impl<'de> Deserialize<'de> for ClaudeErrorEnvelope
impl<'de> Deserialize<'de> for ClaudeErrorEnvelope
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
impl Eq for ClaudeErrorEnvelope
Source§impl PartialEq for ClaudeErrorEnvelope
impl PartialEq for ClaudeErrorEnvelope
Source§impl Serialize for ClaudeErrorEnvelope
impl Serialize for ClaudeErrorEnvelope
impl StructuralPartialEq for ClaudeErrorEnvelope
Auto Trait Implementations§
impl Freeze for ClaudeErrorEnvelope
impl RefUnwindSafe for ClaudeErrorEnvelope
impl Send for ClaudeErrorEnvelope
impl Sync for ClaudeErrorEnvelope
impl Unpin for ClaudeErrorEnvelope
impl UnsafeUnpin for ClaudeErrorEnvelope
impl UnwindSafe for ClaudeErrorEnvelope
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