pub struct SerialConsoleProtocol {
pub console_entry_command: Option<String>,
pub hot_key_sequence_display: Option<String>,
pub port: Option<i64>,
pub service_enabled: Option<bool>,
pub shared_with_manager_cli: Option<bool>,
}
Expand description
The information about a serial console service that this system provides.
Fields§
§console_entry_command: Option<String>
The command string passed to the service to select or enter the system’s serial console.
hot_key_sequence_display: Option<String>
The hotkey sequence available for the user to exit the serial console session.
port: Option<i64>
The protocol port.
service_enabled: Option<bool>
An indication of whether the service is enabled for this system.
Indicates whether the serial console service is shared with access to the manager’s command-line interface (CLI).
Trait Implementations§
source§impl Clone for SerialConsoleProtocol
impl Clone for SerialConsoleProtocol
source§fn clone(&self) -> SerialConsoleProtocol
fn clone(&self) -> SerialConsoleProtocol
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SerialConsoleProtocol
impl Debug for SerialConsoleProtocol
source§impl Default for SerialConsoleProtocol
impl Default for SerialConsoleProtocol
source§fn default() -> SerialConsoleProtocol
fn default() -> SerialConsoleProtocol
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SerialConsoleProtocol
impl<'de> Deserialize<'de> for SerialConsoleProtocol
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