pub struct VncInfo {
pub auth: Option<String>,
pub clients: Option<Vec<VncClientInfo>>,
pub family: Option<NetworkAddressFamily>,
pub host: Option<String>,
pub service: Option<String>,
pub enabled: bool,
}Fields
auth: Option<String>clients: Option<Vec<VncClientInfo>>family: Option<NetworkAddressFamily>host: Option<String>service: Option<String>enabled: boolTrait Implementations
sourceimpl<'de> Deserialize<'de> for VncInfo
impl<'de> Deserialize<'de> for VncInfo
sourcefn 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 RefUnwindSafe for VncInfo
impl Send for VncInfo
impl Sync for VncInfo
impl Unpin for VncInfo
impl UnwindSafe for VncInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more