pub struct CreateSessionResponse {
pub session_name: String,
pub configuration_name: String,
}Expand description
Response for POST /api/v1/sessions — names of the created CFS
session and its underlying configuration.
Fields§
§session_name: StringName of the created CFS session.
configuration_name: StringName of the CFS configuration the session was attached to.
Trait Implementations§
Source§impl ComposeSchema for CreateSessionResponse
impl ComposeSchema for CreateSessionResponse
Source§impl Debug for CreateSessionResponse
impl Debug for CreateSessionResponse
Source§impl<'de> Deserialize<'de> for CreateSessionResponse
impl<'de> Deserialize<'de> for CreateSessionResponse
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 Serialize for CreateSessionResponse
impl Serialize for CreateSessionResponse
Auto Trait Implementations§
impl Freeze for CreateSessionResponse
impl RefUnwindSafe for CreateSessionResponse
impl Send for CreateSessionResponse
impl Sync for CreateSessionResponse
impl Unpin for CreateSessionResponse
impl UnsafeUnpin for CreateSessionResponse
impl UnwindSafe for CreateSessionResponse
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