pub enum ClaudeFileDeleteResponse {
Success {
stats_code: StatusCode,
headers: ClaudeResponseHeaders,
body: ResponseBody,
},
Error {
stats_code: StatusCode,
headers: ClaudeResponseHeaders,
body: BetaErrorResponse,
},
}Expand description
Full HTTP response for Claude “Delete File” endpoint.
Variants§
Trait Implementations§
Source§impl Clone for ClaudeFileDeleteResponse
impl Clone for ClaudeFileDeleteResponse
Source§fn clone(&self) -> ClaudeFileDeleteResponse
fn clone(&self) -> ClaudeFileDeleteResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ClaudeFileDeleteResponse
impl Debug for ClaudeFileDeleteResponse
Source§impl<'de> Deserialize<'de> for ClaudeFileDeleteResponse
impl<'de> Deserialize<'de> for ClaudeFileDeleteResponse
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
Source§impl PartialEq for ClaudeFileDeleteResponse
impl PartialEq for ClaudeFileDeleteResponse
Source§impl Serialize for ClaudeFileDeleteResponse
impl Serialize for ClaudeFileDeleteResponse
impl StructuralPartialEq for ClaudeFileDeleteResponse
Auto Trait Implementations§
impl Freeze for ClaudeFileDeleteResponse
impl RefUnwindSafe for ClaudeFileDeleteResponse
impl Send for ClaudeFileDeleteResponse
impl Sync for ClaudeFileDeleteResponse
impl Unpin for ClaudeFileDeleteResponse
impl UnsafeUnpin for ClaudeFileDeleteResponse
impl UnwindSafe for ClaudeFileDeleteResponse
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