pub struct HostRdmaHba {
pub host_host_bus_adapter_: HostHostBusAdapter,
pub associated_rdma_device: Option<String>,
}Expand description
This data object describes the Remote Direct Memory Access (RDMA) host bus adapter interface.
§How to access
HostSystem::config.storage_device?.host_bus_adapter?[*]→HostRdmaHbaHostStorageSystem::storage_device_info.host_bus_adapter?[*]→HostRdmaHbaHostProfileManager::apply_host_config_task(config_spec).storage_device?.host_bus_adapter?[*]→HostRdmaHbaHostProfileManager::generate_config_task_list(config_spec).storage_device?.host_bus_adapter?[*]→HostRdmaHbaHostProfileManager::generate_host_profile_task_list_task(config_spec).storage_device?.host_bus_adapter?[*]→HostRdmaHbaHostProfile::execute_host_profile().config_spec?.storage_device?.host_bus_adapter?[*]→HostRdmaHbaHostProfileManager::generate_config_task_list().config_spec?.storage_device?.host_bus_adapter?[*]→HostRdmaHba
Fields§
§host_host_bus_adapter_: HostHostBusAdapter§associated_rdma_device: Option<String>Device name of the associated RDMA device, if any.
Should match the HostRdmaDevice.device property of the corresponding RDMA device.
Trait Implementations§
Source§impl Debug for HostRdmaHba
impl Debug for HostRdmaHba
Source§impl Deref for HostRdmaHba
impl Deref for HostRdmaHba
Source§impl DerefMut for HostRdmaHba
impl DerefMut for HostRdmaHba
Source§impl Deserialize for HostRdmaHba
impl Deserialize for HostRdmaHba
Source§impl HostHostBusAdapterTrait for HostRdmaHba
impl HostHostBusAdapterTrait for HostRdmaHba
Source§fn get_host_host_bus_adapter(&self) -> &HostHostBusAdapter
fn get_host_host_bus_adapter(&self) -> &HostHostBusAdapter
Get a reference to the HostHostBusAdapter parent struct
Source§fn get_host_host_bus_adapter_mut(&mut self) -> &mut HostHostBusAdapter
fn get_host_host_bus_adapter_mut(&mut self) -> &mut HostHostBusAdapter
Get a mutable reference to the HostHostBusAdapter parent struct
Source§impl VimObjectTrait for HostRdmaHba
impl VimObjectTrait for HostRdmaHba
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostRdmaHba
Auto Trait Implementations§
impl Freeze for HostRdmaHba
impl RefUnwindSafe for HostRdmaHba
impl Send for HostRdmaHba
impl Sync for HostRdmaHba
impl Unpin for HostRdmaHba
impl UnsafeUnpin for HostRdmaHba
impl UnwindSafe for HostRdmaHba
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