pub struct ApplySatFileParams<'a> {
pub sat_file_content: &'a str,
pub values: Option<&'a Value>,
pub values_file_content: Option<&'a str>,
pub ansible_verbosity: Option<u8>,
pub ansible_passthrough: Option<&'a str>,
pub reboot: bool,
pub watch_logs: bool,
pub timestamps: bool,
pub image_only: bool,
pub session_template_only: bool,
pub overwrite: bool,
pub dry_run: bool,
}Expand description
Parameters for applying a SAT file.
Fields§
§sat_file_content: &'a str§values: Option<&'a Value>§values_file_content: Option<&'a str>§ansible_verbosity: Option<u8>§ansible_passthrough: Option<&'a str>§reboot: bool§watch_logs: bool§timestamps: bool§image_only: bool§session_template_only: bool§overwrite: bool§dry_run: boolAuto Trait Implementations§
impl<'a> Freeze for ApplySatFileParams<'a>
impl<'a> RefUnwindSafe for ApplySatFileParams<'a>
impl<'a> Send for ApplySatFileParams<'a>
impl<'a> Sync for ApplySatFileParams<'a>
impl<'a> Unpin for ApplySatFileParams<'a>
impl<'a> UnsafeUnpin for ApplySatFileParams<'a>
impl<'a> UnwindSafe for ApplySatFileParams<'a>
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