pub struct PostSatSessionTemplateResponse {
pub template: BosSessionTemplate,
pub session: Option<BosSession>,
}Expand description
Response body for POST /api/v1/sat-file/session-templates.
session is populated when create_bos_session was true. In a real
apply it carries the freshly-created BOS session; in a dry-run it
carries a mock with no status and a dry-run- name prefix.
Fields§
§template: BosSessionTemplateThe created (or mock, in dry-run) BOS session template.
session: Option<BosSession>The BOS session created from the new template, if any.
Trait Implementations§
Source§impl ComposeSchema for PostSatSessionTemplateResponse
impl ComposeSchema for PostSatSessionTemplateResponse
Source§impl<'de> Deserialize<'de> for PostSatSessionTemplateResponse
impl<'de> Deserialize<'de> for PostSatSessionTemplateResponse
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 PostSatSessionTemplateResponse
impl RefUnwindSafe for PostSatSessionTemplateResponse
impl Send for PostSatSessionTemplateResponse
impl Sync for PostSatSessionTemplateResponse
impl Unpin for PostSatSessionTemplateResponse
impl UnwindSafe for PostSatSessionTemplateResponse
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