#[repr(C)]pub struct VncClientInfo {
pub host: *mut i8,
pub service: *mut i8,
pub family: u32,
pub websocket: bool,
pub has_x509_dname: bool,
pub x509_dname: *mut i8,
pub has_sasl_username: bool,
pub sasl_username: *mut i8,
}Fields§
§host: *mut i8§service: *mut i8§family: u32§websocket: bool§has_x509_dname: bool§x509_dname: *mut i8§has_sasl_username: bool§sasl_username: *mut i8Trait Implementations§
Source§impl Clone for VncClientInfo
impl Clone for VncClientInfo
Source§fn clone(&self) -> VncClientInfo
fn clone(&self) -> VncClientInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VncClientInfo
impl Debug for VncClientInfo
impl Copy for VncClientInfo
Auto Trait Implementations§
impl Freeze for VncClientInfo
impl RefUnwindSafe for VncClientInfo
impl !Send for VncClientInfo
impl !Sync for VncClientInfo
impl Unpin for VncClientInfo
impl UnwindSafe for VncClientInfo
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