pub struct CloseSessionResponse {
pub success: bool,
pub message: String,
}Expand description
Response after closing a bash session.
Fields§
§success: bool§message: StringTrait Implementations§
Source§impl Clone for CloseSessionResponse
impl Clone for CloseSessionResponse
Source§fn clone(&self) -> CloseSessionResponse
fn clone(&self) -> CloseSessionResponse
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 CloseSessionResponse
impl Debug for CloseSessionResponse
Source§impl<'de> Deserialize<'de> for CloseSessionResponse
impl<'de> Deserialize<'de> for CloseSessionResponse
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 CloseSessionResponse
impl RefUnwindSafe for CloseSessionResponse
impl Send for CloseSessionResponse
impl Sync for CloseSessionResponse
impl Unpin for CloseSessionResponse
impl UnsafeUnpin for CloseSessionResponse
impl UnwindSafe for CloseSessionResponse
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