pub struct SessionCloseResponse {
pub ok: bool,
}Expand description
POST /session/close response body.
Fields§
§ok: boolTrue unless the runner failed to remove the session cache entry. Not a “session was known” flag — closing an unknown session is idempotent success.
Trait Implementations§
Source§impl Clone for SessionCloseResponse
impl Clone for SessionCloseResponse
Source§fn clone(&self) -> SessionCloseResponse
fn clone(&self) -> SessionCloseResponse
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 SessionCloseResponse
impl Debug for SessionCloseResponse
Source§impl Default for SessionCloseResponse
impl Default for SessionCloseResponse
Source§fn default() -> SessionCloseResponse
fn default() -> SessionCloseResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionCloseResponse
impl<'de> Deserialize<'de> for SessionCloseResponse
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 SessionCloseResponse
impl RefUnwindSafe for SessionCloseResponse
impl Send for SessionCloseResponse
impl Sync for SessionCloseResponse
impl Unpin for SessionCloseResponse
impl UnsafeUnpin for SessionCloseResponse
impl UnwindSafe for SessionCloseResponse
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