Skip to main content

VncConnectionClass

Struct VncConnectionClass 

Source
#[repr(C)]
pub struct VncConnectionClass {
Show 22 fields pub parent_class: GObjectClass, pub vnc_cursor_changed: Option<unsafe extern "C" fn(*mut VncConnection, *mut VncCursor)>, pub vnc_pointer_mode_changed: Option<unsafe extern "C" fn(*mut VncConnection, gboolean)>, pub vnc_bell: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_server_cut_text: Option<unsafe extern "C" fn(*mut VncConnection, *const GString)>, pub vnc_framebuffer_update: Option<unsafe extern "C" fn(*mut VncConnection, u16, u16, u16, u16)>, pub vnc_desktop_resize: Option<unsafe extern "C" fn(*mut VncConnection, u16, u16)>, pub vnc_pixel_format_changed: Option<unsafe extern "C" fn(*mut VncConnection, *mut VncPixelFormat)>, pub vnc_auth_failure: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>, pub vnc_auth_unsupported: Option<unsafe extern "C" fn(*mut VncConnection, c_uint)>, pub vnc_auth_credential: Option<unsafe extern "C" fn(*mut VncConnection, *mut GValueArray)>, pub vnc_auth_choose_type: Option<unsafe extern "C" fn(*mut VncConnection, *mut GValueArray)>, pub vnc_auth_choose_subtype: Option<unsafe extern "C" fn(*mut VncConnection, c_uint, *mut GValueArray)>, pub vnc_connected: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_initialized: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_disconnected: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_led_state: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_error: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>, pub vnc_power_control_initialized: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_power_control_failed: Option<unsafe extern "C" fn(*mut VncConnection)>, pub vnc_desktop_rename: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>, pub _vnc_reserved: [gpointer; 15],
}

Fields§

§parent_class: GObjectClass§vnc_cursor_changed: Option<unsafe extern "C" fn(*mut VncConnection, *mut VncCursor)>§vnc_pointer_mode_changed: Option<unsafe extern "C" fn(*mut VncConnection, gboolean)>§vnc_bell: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_server_cut_text: Option<unsafe extern "C" fn(*mut VncConnection, *const GString)>§vnc_framebuffer_update: Option<unsafe extern "C" fn(*mut VncConnection, u16, u16, u16, u16)>§vnc_desktop_resize: Option<unsafe extern "C" fn(*mut VncConnection, u16, u16)>§vnc_pixel_format_changed: Option<unsafe extern "C" fn(*mut VncConnection, *mut VncPixelFormat)>§vnc_auth_failure: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>§vnc_auth_unsupported: Option<unsafe extern "C" fn(*mut VncConnection, c_uint)>§vnc_auth_credential: Option<unsafe extern "C" fn(*mut VncConnection, *mut GValueArray)>§vnc_auth_choose_type: Option<unsafe extern "C" fn(*mut VncConnection, *mut GValueArray)>§vnc_auth_choose_subtype: Option<unsafe extern "C" fn(*mut VncConnection, c_uint, *mut GValueArray)>§vnc_connected: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_initialized: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_disconnected: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_led_state: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_error: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>§vnc_power_control_initialized: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_power_control_failed: Option<unsafe extern "C" fn(*mut VncConnection)>§vnc_desktop_rename: Option<unsafe extern "C" fn(*mut VncConnection, *const c_char)>§_vnc_reserved: [gpointer; 15]

Trait Implementations§

Source§

impl Clone for VncConnectionClass

Source§

fn clone(&self) -> VncConnectionClass

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for VncConnectionClass

Source§

impl Debug for VncConnectionClass

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.