pub enum HostingRole {
ApplicationServer,
StorageServer,
Switch,
Appliance,
BareMetalServer,
VirtualMachineServer,
ContainerServer,
}
Expand description
The enumerations of HostingRoles specify different features that the hosting ComputerSystem supports.
Variants§
ApplicationServer
The system hosts functionality that supports general purpose applications.
StorageServer
The system hosts functionality that supports the system acting as a storage server.
Switch
The system hosts functionality that supports the system acting as a switch.
Appliance
The system hosts functionality that supports the system acting as an appliance. Added in version v1_10_0.
BareMetalServer
The system hosts functionality that supports the system acting as a bare metal server. Added in version v1_10_0.
VirtualMachineServer
The system hosts functionality that supports the system acting as a virtual machine server. Added in version v1_10_0.
ContainerServer
The system hosts functionality that supports the system acting as a container server. Added in version v1_10_0.
Trait Implementations§
Source§impl Clone for HostingRole
impl Clone for HostingRole
Source§fn clone(&self) -> HostingRole
fn clone(&self) -> HostingRole
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more