Struct libvnc_sys::rfb::_rfbClientProtocolExtension
source · #[repr(C)]pub struct _rfbClientProtocolExtension {
pub encodings: *mut c_int,
pub handleEncoding: Option<unsafe extern "C" fn(cl: *mut rfbClient, rect: *mut rfbFramebufferUpdateRectHeader) -> rfbBool>,
pub handleMessage: Option<unsafe extern "C" fn(cl: *mut rfbClient, message: *mut rfbServerToClientMsg) -> rfbBool>,
pub next: *mut _rfbClientProtocolExtension,
pub securityTypes: *const u32,
pub handleAuthentication: Option<unsafe extern "C" fn(cl: *mut rfbClient, authScheme: u32) -> rfbBool>,
}Fields§
§encodings: *mut c_int§handleEncoding: Option<unsafe extern "C" fn(cl: *mut rfbClient, rect: *mut rfbFramebufferUpdateRectHeader) -> rfbBool>returns TRUE if the encoding was handled
handleMessage: Option<unsafe extern "C" fn(cl: *mut rfbClient, message: *mut rfbServerToClientMsg) -> rfbBool>returns TRUE if it handled the message
next: *mut _rfbClientProtocolExtension§securityTypes: *const u32§handleAuthentication: Option<unsafe extern "C" fn(cl: *mut rfbClient, authScheme: u32) -> rfbBool>returns TRUE if it handled the authentication
Trait Implementations§
source§impl Clone for _rfbClientProtocolExtension
impl Clone for _rfbClientProtocolExtension
source§fn clone(&self) -> _rfbClientProtocolExtension
fn clone(&self) -> _rfbClientProtocolExtension
Returns a copy 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 _rfbClientProtocolExtension
impl Debug for _rfbClientProtocolExtension
impl Copy for _rfbClientProtocolExtension
Auto Trait Implementations§
impl Freeze for _rfbClientProtocolExtension
impl RefUnwindSafe for _rfbClientProtocolExtension
impl !Send for _rfbClientProtocolExtension
impl !Sync for _rfbClientProtocolExtension
impl Unpin for _rfbClientProtocolExtension
impl UnwindSafe for _rfbClientProtocolExtension
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