#[repr(C)]pub struct VncInfo {
pub enabled: bool,
pub has_host: bool,
pub host: *mut c_char,
pub has_family: bool,
pub family: NetworkAddressFamily,
pub has_service: bool,
pub service: *mut c_char,
pub has_auth: bool,
pub auth: *mut c_char,
pub has_clients: bool,
pub clients: *mut VncClientInfoList,
}Fields§
§enabled: bool§has_host: bool§host: *mut c_char§has_family: bool§family: NetworkAddressFamily§has_service: bool§service: *mut c_char§has_auth: bool§auth: *mut c_char§has_clients: bool§clients: *mut VncClientInfoListTrait Implementations§
Auto Trait Implementations§
impl Freeze for VncInfo
impl RefUnwindSafe for VncInfo
impl !Send for VncInfo
impl !Sync for VncInfo
impl Unpin for VncInfo
impl UnwindSafe for VncInfo
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