pub struct CommandShell {
pub base: ManagerService,
pub connect_types_supported: Option<Vec<CommandConnectTypesSupported>>,
}Expand description
The information about a command shell service that this manager provides.
This type shall describe a command shell service for a manager.
Fields§
§base: ManagerServiceBase type
connect_types_supported: Option<Vec<CommandConnectTypesSupported>>This property enumerates the command shell connection types that the implementation allows.
This property shall contain an array of the enumerations. SSH shall be included if the Secure Shell (SSH) protocol is supported. Telnet shall be included if the Telnet protocol is supported. IPMI shall be included if the IPMI Serial Over LAN (SOL) protocol is supported.
Trait Implementations§
Source§impl Debug for CommandShell
impl Debug for CommandShell
Source§impl<'de> Deserialize<'de> for CommandShell
impl<'de> Deserialize<'de> for CommandShell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CommandShell
impl RefUnwindSafe for CommandShell
impl Send for CommandShell
impl Sync for CommandShell
impl Unpin for CommandShell
impl UnsafeUnpin for CommandShell
impl UnwindSafe for CommandShell
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