pub struct RestSessionCreateResponse {
pub session_id: String,
pub initialize_response: Value,
}Expand description
Response body for POST /v1/sessions.
Fields§
§session_id: String§initialize_response: ValueTrait Implementations§
Source§impl Clone for RestSessionCreateResponse
impl Clone for RestSessionCreateResponse
Source§fn clone(&self) -> RestSessionCreateResponse
fn clone(&self) -> RestSessionCreateResponse
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 RestSessionCreateResponse
impl Debug for RestSessionCreateResponse
Source§impl<'de> Deserialize<'de> for RestSessionCreateResponse
impl<'de> Deserialize<'de> for RestSessionCreateResponse
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 RestSessionCreateResponse
impl PartialEq for RestSessionCreateResponse
Source§fn eq(&self, other: &RestSessionCreateResponse) -> bool
fn eq(&self, other: &RestSessionCreateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RestSessionCreateResponse
Auto Trait Implementations§
impl Freeze for RestSessionCreateResponse
impl RefUnwindSafe for RestSessionCreateResponse
impl Send for RestSessionCreateResponse
impl Sync for RestSessionCreateResponse
impl Unpin for RestSessionCreateResponse
impl UnsafeUnpin for RestSessionCreateResponse
impl UnwindSafe for RestSessionCreateResponse
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