pub struct AnswerFileOptionsCreateSpec {
pub answer_file_create_spec_: AnswerFileCreateSpec,
pub user_input: Option<Vec<ProfileDeferredPolicyOptionParameter>>,
}Expand description
The AnswerFileOptionsCreateSpec data object contains host-specific user input for an answer file.
§How to access
HostProfileManager::update_answer_file_task(config_spec)→AnswerFileOptionsCreateSpec
Fields§
§answer_file_create_spec_: AnswerFileCreateSpec§user_input: Option<Vec<ProfileDeferredPolicyOptionParameter>>List of parameters that contain host-specific data.
Trait Implementations§
Source§impl AnswerFileCreateSpecTrait for AnswerFileOptionsCreateSpec
impl AnswerFileCreateSpecTrait for AnswerFileOptionsCreateSpec
Source§fn get_answer_file_create_spec(&self) -> &AnswerFileCreateSpec
fn get_answer_file_create_spec(&self) -> &AnswerFileCreateSpec
Get a reference to the AnswerFileCreateSpec parent struct
Source§fn get_answer_file_create_spec_mut(&mut self) -> &mut AnswerFileCreateSpec
fn get_answer_file_create_spec_mut(&mut self) -> &mut AnswerFileCreateSpec
Get a mutable reference to the AnswerFileCreateSpec parent struct
Source§impl Debug for AnswerFileOptionsCreateSpec
impl Debug for AnswerFileOptionsCreateSpec
Source§impl Deref for AnswerFileOptionsCreateSpec
impl Deref for AnswerFileOptionsCreateSpec
Source§impl VimObjectTrait for AnswerFileOptionsCreateSpec
impl VimObjectTrait for AnswerFileOptionsCreateSpec
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for AnswerFileOptionsCreateSpec
Auto Trait Implementations§
impl Freeze for AnswerFileOptionsCreateSpec
impl !RefUnwindSafe for AnswerFileOptionsCreateSpec
impl Send for AnswerFileOptionsCreateSpec
impl Sync for AnswerFileOptionsCreateSpec
impl Unpin for AnswerFileOptionsCreateSpec
impl UnsafeUnpin for AnswerFileOptionsCreateSpec
impl !UnwindSafe for AnswerFileOptionsCreateSpec
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