pub struct DeleteWorkspaceResponse {
pub deleted: bool,
}Expand description
Response from DELETE /workspaces/{id_or_slug}.
Fields§
§deleted: boolTrue when the workspace existed and was deleted.
Trait Implementations§
Source§impl Clone for DeleteWorkspaceResponse
impl Clone for DeleteWorkspaceResponse
Source§fn clone(&self) -> DeleteWorkspaceResponse
fn clone(&self) -> DeleteWorkspaceResponse
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 moreimpl Copy for DeleteWorkspaceResponse
Source§impl Debug for DeleteWorkspaceResponse
impl Debug for DeleteWorkspaceResponse
Source§impl Default for DeleteWorkspaceResponse
impl Default for DeleteWorkspaceResponse
Source§fn default() -> DeleteWorkspaceResponse
fn default() -> DeleteWorkspaceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteWorkspaceResponse
impl<'de> Deserialize<'de> for DeleteWorkspaceResponse
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 DeleteWorkspaceResponse
Source§impl PartialEq for DeleteWorkspaceResponse
impl PartialEq for DeleteWorkspaceResponse
Source§impl Serialize for DeleteWorkspaceResponse
impl Serialize for DeleteWorkspaceResponse
impl StructuralPartialEq for DeleteWorkspaceResponse
Auto Trait Implementations§
impl Freeze for DeleteWorkspaceResponse
impl RefUnwindSafe for DeleteWorkspaceResponse
impl Send for DeleteWorkspaceResponse
impl Sync for DeleteWorkspaceResponse
impl Unpin for DeleteWorkspaceResponse
impl UnsafeUnpin for DeleteWorkspaceResponse
impl UnwindSafe for DeleteWorkspaceResponse
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