pub struct DeleteResponse {
pub id: String,
pub object: String,
pub deleted: bool,
}
Fields§
§id: String
The unique identifier for the deleted object.
object: String
The type of object that was deleted.
deleted: bool
A boolean indicating whether the object was successfully deleted.
Trait Implementations§
Source§impl Debug for DeleteResponse
impl Debug for DeleteResponse
Source§impl<'de> Deserialize<'de> for DeleteResponse
impl<'de> Deserialize<'de> for DeleteResponse
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 DeleteResponse
impl RefUnwindSafe for DeleteResponse
impl Send for DeleteResponse
impl Sync for DeleteResponse
impl Unpin for DeleteResponse
impl UnwindSafe for DeleteResponse
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