pub struct DeleteProjectResponse {
pub deleted: bool,
pub project_id: String,
pub chats_kept: i64,
}Expand description
DeleteProjectResponse model.
Fields§
§deleted: bool§project_id: String§chats_kept: i64Trait Implementations§
Source§impl Clone for DeleteProjectResponse
impl Clone for DeleteProjectResponse
Source§fn clone(&self) -> DeleteProjectResponse
fn clone(&self) -> DeleteProjectResponse
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 DeleteProjectResponse
impl Debug for DeleteProjectResponse
Source§impl Default for DeleteProjectResponse
impl Default for DeleteProjectResponse
Source§fn default() -> DeleteProjectResponse
fn default() -> DeleteProjectResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteProjectResponse
impl<'de> Deserialize<'de> for DeleteProjectResponse
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 DeleteProjectResponse
impl PartialEq for DeleteProjectResponse
Source§impl Serialize for DeleteProjectResponse
impl Serialize for DeleteProjectResponse
impl StructuralPartialEq for DeleteProjectResponse
Auto Trait Implementations§
impl Freeze for DeleteProjectResponse
impl RefUnwindSafe for DeleteProjectResponse
impl Send for DeleteProjectResponse
impl Sync for DeleteProjectResponse
impl Unpin for DeleteProjectResponse
impl UnsafeUnpin for DeleteProjectResponse
impl UnwindSafe for DeleteProjectResponse
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