pub struct VirtualMediaConfig {
pub service_enabled: Option<Boolean>,
pub port: Option<Option<Int64>>,
}Expand description
The information about virtual media service for this system.
This type shall describe a virtual media service for a computer system.
Fields§
§service_enabled: Option<Boolean>An indication of whether the service is enabled for this system.
This property shall indicate whether the protocol for the service is enabled.
port: Option<Option<Int64>>The protocol port.
This property shall contain the port assigned to the service.
Trait Implementations§
Source§impl Debug for VirtualMediaConfig
impl Debug for VirtualMediaConfig
Source§impl<'de> Deserialize<'de> for VirtualMediaConfig
impl<'de> Deserialize<'de> for VirtualMediaConfig
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 VirtualMediaConfig
SAFETY: All generated data types are Send
impl Sync for VirtualMediaConfig
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for VirtualMediaConfig
impl RefUnwindSafe for VirtualMediaConfig
impl Unpin for VirtualMediaConfig
impl UnsafeUnpin for VirtualMediaConfig
impl UnwindSafe for VirtualMediaConfig
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