pub struct ProfileApplyProfileElement {
pub apply_profile_: ApplyProfile,
pub key: String,
}Expand description
DataObject which represents an ApplyProfile element.
An ApplyProfile element is an ApplyProfile for a set of host configuration settings which may be instanced. For example, there may be multiple virtual switch instances represented by individual ApplyProfileElement DataObjects.
§How to access
HostProfileManager::create_default_profile()→ProfileApplyProfileElement
Fields§
§apply_profile_: ApplyProfile§key: StringThe linkable identifier.
Trait Implementations§
Source§impl ApplyProfileTrait for ProfileApplyProfileElement
impl ApplyProfileTrait for ProfileApplyProfileElement
Source§fn get_apply_profile(&self) -> &ApplyProfile
fn get_apply_profile(&self) -> &ApplyProfile
Get a reference to the ApplyProfile parent struct
Source§fn get_apply_profile_mut(&mut self) -> &mut ApplyProfile
fn get_apply_profile_mut(&mut self) -> &mut ApplyProfile
Get a mutable reference to the ApplyProfile parent struct
Source§impl Debug for ProfileApplyProfileElement
impl Debug for ProfileApplyProfileElement
Source§impl Deref for ProfileApplyProfileElement
impl Deref for ProfileApplyProfileElement
Source§impl VimObjectTrait for ProfileApplyProfileElement
impl VimObjectTrait for ProfileApplyProfileElement
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for ProfileApplyProfileElement
Auto Trait Implementations§
impl Freeze for ProfileApplyProfileElement
impl !RefUnwindSafe for ProfileApplyProfileElement
impl Send for ProfileApplyProfileElement
impl Sync for ProfileApplyProfileElement
impl Unpin for ProfileApplyProfileElement
impl UnsafeUnpin for ProfileApplyProfileElement
impl !UnwindSafe for ProfileApplyProfileElement
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