pub struct PostSatFileResponse {
pub configurations: Vec<CfsConfigurationResponse>,
pub images: Vec<Image>,
pub session_templates: Vec<BosSessionTemplate>,
pub bos_sessions: Vec<BosSession>,
}Expand description
Response body for POST /sat-file. Each field is the list of objects
the backend produced (or would produce, in dry_run mode) while
realising the SAT file.
Fields§
§configurations: Vec<CfsConfigurationResponse>CFS configurations created from the SAT file’s configurations.
images: Vec<Image>IMS images built from the SAT file’s images.
session_templates: Vec<BosSessionTemplate>BOS session templates created from session_templates.
bos_sessions: Vec<BosSession>BOS sessions triggered when reboot was set.
Trait Implementations§
Source§impl ComposeSchema for PostSatFileResponse
impl ComposeSchema for PostSatFileResponse
Source§impl Serialize for PostSatFileResponse
impl Serialize for PostSatFileResponse
Auto Trait Implementations§
impl Freeze for PostSatFileResponse
impl RefUnwindSafe for PostSatFileResponse
impl Send for PostSatFileResponse
impl Sync for PostSatFileResponse
impl Unpin for PostSatFileResponse
impl UnwindSafe for PostSatFileResponse
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.