#[repr(C)]pub struct grpc_tls_custom_verification_check_request {
pub target_name: *const c_char,
pub peer_info: grpc_tls_custom_verification_check_request_peer_info,
}
Expand description
EXPERIMENTAL API - Subject to change
The read-only request information exposed in a verification call. Callers should not directly manage the ownership of it. We will make sure it is always available inside verify() or cancel() call, and will destroy the object at the end of custom verification.
Fields§
§target_name: *const c_char
§peer_info: grpc_tls_custom_verification_check_request_peer_info
Trait Implementations§
source§impl Clone for grpc_tls_custom_verification_check_request
impl Clone for grpc_tls_custom_verification_check_request
source§fn clone(&self) -> grpc_tls_custom_verification_check_request
fn clone(&self) -> grpc_tls_custom_verification_check_request
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 moreimpl Copy for grpc_tls_custom_verification_check_request
Auto Trait Implementations§
impl RefUnwindSafe for grpc_tls_custom_verification_check_request
impl !Send for grpc_tls_custom_verification_check_request
impl !Sync for grpc_tls_custom_verification_check_request
impl Unpin for grpc_tls_custom_verification_check_request
impl UnwindSafe for grpc_tls_custom_verification_check_request
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