#[repr(C)]pub struct VncInfo {
pub enabled: bool,
pub has_host: bool,
pub host: *mut i8,
pub has_family: bool,
pub family: u32,
pub has_service: bool,
pub service: *mut i8,
pub has_auth: bool,
pub auth: *mut i8,
pub has_clients: bool,
pub clients: *mut VncClientInfoList,
}Fields§
§enabled: bool§has_host: bool§host: *mut i8§has_family: bool§family: u32§has_service: bool§service: *mut i8§has_auth: bool§auth: *mut i8§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