pub struct ReleaseWorkspaceResponse {
pub released: bool,
}Expand description
JSON shape of mimir_release_workspace’s response.
Fields§
§released: boolAlways true on success. Future variants may report
“released a lease that had already expired”; for v0 we just
mirror the operation succeeded.
Trait Implementations§
Source§impl Clone for ReleaseWorkspaceResponse
impl Clone for ReleaseWorkspaceResponse
Source§fn clone(&self) -> ReleaseWorkspaceResponse
fn clone(&self) -> ReleaseWorkspaceResponse
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 ReleaseWorkspaceResponse
impl Debug for ReleaseWorkspaceResponse
Source§impl<'de> Deserialize<'de> for ReleaseWorkspaceResponse
impl<'de> Deserialize<'de> for ReleaseWorkspaceResponse
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 ReleaseWorkspaceResponse
impl RefUnwindSafe for ReleaseWorkspaceResponse
impl Send for ReleaseWorkspaceResponse
impl Sync for ReleaseWorkspaceResponse
impl Unpin for ReleaseWorkspaceResponse
impl UnsafeUnpin for ReleaseWorkspaceResponse
impl UnwindSafe for ReleaseWorkspaceResponse
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