pub struct ManagerService {
pub service_enabled: Option<Boolean>,
pub max_concurrent_sessions: Option<Int64>,
}Expand description
The manager services, such as serial console, command shell, or graphical console service.
Fields§
§service_enabled: Option<Boolean>An indication of whether the service is enabled for this manager.
This property shall indicate whether the protocol for the service is enabled.
max_concurrent_sessions: Option<Int64>The maximum number of service sessions, regardless of protocol, that this manager can support.
This property shall contain the maximum number of concurrent service sessions that this implementation supports.
Trait Implementations§
Source§impl Debug for ManagerService
impl Debug for ManagerService
Source§impl<'de> Deserialize<'de> for ManagerService
impl<'de> Deserialize<'de> for ManagerService
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 ManagerService
SAFETY: All generated data types are Send
impl Sync for ManagerService
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for ManagerService
impl RefUnwindSafe for ManagerService
impl Unpin for ManagerService
impl UnsafeUnpin for ManagerService
impl UnwindSafe for ManagerService
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