#[repr(C)]pub struct _GProxyResolverInterface {
pub g_iface: GTypeInterface,
pub is_supported: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver) -> gboolean>,
pub lookup: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, uri: *const gchar, cancellable: *mut GCancellable, error: *mut *mut GError) -> *mut *mut gchar>,
pub lookup_async: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, uri: *const gchar, cancellable: *mut GCancellable, callback: GAsyncReadyCallback, user_data: gpointer)>,
pub lookup_finish: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, result: *mut GAsyncResult, error: *mut *mut GError) -> *mut *mut gchar>,
}Fields§
§g_iface: GTypeInterface§is_supported: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver) -> gboolean>§lookup: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, uri: *const gchar, cancellable: *mut GCancellable, error: *mut *mut GError) -> *mut *mut gchar>§lookup_async: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, uri: *const gchar, cancellable: *mut GCancellable, callback: GAsyncReadyCallback, user_data: gpointer)>§lookup_finish: Option<unsafe extern "C" fn(resolver: *mut GProxyResolver, result: *mut GAsyncResult, error: *mut *mut GError) -> *mut *mut gchar>Trait Implementations§
Auto Trait Implementations§
impl Freeze for _GProxyResolverInterface
impl RefUnwindSafe for _GProxyResolverInterface
impl Send for _GProxyResolverInterface
impl Sync for _GProxyResolverInterface
impl Unpin for _GProxyResolverInterface
impl UnwindSafe for _GProxyResolverInterface
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