Struct grpcio_sys::grpc_ssl_verify_peer_options [−][src]
Object that holds additional peer-verification options on a secure channel.
Fields
verify_peer_callback: Option<unsafe extern "C" fn(target_name: *const c_char, peer_pem: *const c_char, userdata: *mut c_void) -> c_int>
If non-NULL this callback will be invoked with the expected target_name, the peer’s certificate (in PEM format), and whatever userdata pointer is set below. If a non-zero value is returned by this callback then it is treated as a verification failure. Invocation of the callback is blocking, so any implementation should be light-weight.
verify_peer_callback_userdata: *mut c_void
Arbitrary userdata that will be passed as the last argument to verify_peer_callback.
verify_peer_destruct: Option<unsafe extern "C" fn(userdata: *mut c_void)>
A destruct callback that will be invoked when the channel is being cleaned up. The userdata argument will be passed to it. The intent is to perform any cleanup associated with that userdata.
Trait Implementations
impl Clone for grpc_ssl_verify_peer_options
[src]
fn clone(&self) -> grpc_ssl_verify_peer_options
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for grpc_ssl_verify_peer_options
[src]
impl Debug for grpc_ssl_verify_peer_options
[src]
Auto Trait Implementations
impl RefUnwindSafe for grpc_ssl_verify_peer_options
impl !Send for grpc_ssl_verify_peer_options
impl !Sync for grpc_ssl_verify_peer_options
impl Unpin for grpc_ssl_verify_peer_options
impl UnwindSafe for grpc_ssl_verify_peer_options
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,