pub struct SessionTemplate {
pub name: String,
pub image: Image,
pub configuration: String,
pub bos_parameters: BosParamters,
}Expand description
A BOS session template linking an image, configuration, and boot parameters for a set of nodes.
Fields§
§name: StringUnique name for the session template.
image: ImageIMS image (or cross-reference to a SAT images entry) to boot.
configuration: StringCFS configuration applied to the booted nodes.
bos_parameters: BosParamtersPer-boot-set kernel / rootfs / node-targeting parameters.
Trait Implementations§
Source§impl Debug for SessionTemplate
impl Debug for SessionTemplate
Source§impl<'de> Deserialize<'de> for SessionTemplate
impl<'de> Deserialize<'de> for SessionTemplate
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 SessionTemplate
impl RefUnwindSafe for SessionTemplate
impl Send for SessionTemplate
impl Sync for SessionTemplate
impl Unpin for SessionTemplate
impl UnsafeUnpin for SessionTemplate
impl UnwindSafe for SessionTemplate
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