pub struct GraphicalConsole {
pub base: ManagerService,
pub connect_types_supported: Option<Vec<GraphicalConnectTypesSupported>>,
}Expand description
The information about a graphical console service that this manager provides.
This type shall describe a graphical console service for a manager.
Fields§
§base: ManagerServiceBase type
connect_types_supported: Option<Vec<GraphicalConnectTypesSupported>>This property enumerates the graphical console connection types that the implementation allows.
This property shall contain an array of the enumerations. RDP shall be included if the Remote Desktop (RDP) protocol is supported. KVMIP shall be included if a vendor-defined KVM-IP protocol is supported.
Trait Implementations§
Source§impl Debug for GraphicalConsole
impl Debug for GraphicalConsole
Source§impl<'de> Deserialize<'de> for GraphicalConsole
impl<'de> Deserialize<'de> for GraphicalConsole
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
impl Send for GraphicalConsole
SAFETY: All generated data types are Send
impl Sync for GraphicalConsole
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for GraphicalConsole
impl RefUnwindSafe for GraphicalConsole
impl Unpin for GraphicalConsole
impl UnsafeUnpin for GraphicalConsole
impl UnwindSafe for GraphicalConsole
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