Struct grpcio_sys::grpc_metadata_credentials_plugin[][src]

#[repr(C)]
pub struct grpc_metadata_credentials_plugin { pub get_metadata: Option<unsafe extern "C" fn(state: *mut c_void, context: grpc_auth_metadata_context, cb: grpc_credentials_plugin_metadata_cb, user_data: *mut c_void, creds_md: *mut grpc_metadata, num_creds_md: *mut usize, status: *mut Type, error_details: *mut *const c_char) -> c_int>, pub debug_string: Option<unsafe extern "C" fn(state: *mut c_void) -> *mut c_char>, pub destroy: Option<unsafe extern "C" fn(state: *mut c_void)>, pub state: *mut c_void, pub type_: *const c_char, }
Expand description

grpc_metadata_credentials plugin is an API user provided structure used to create grpc_credentials objects that can be set on a channel (composed) or a call. See grpc_credentials_metadata_create_from_plugin below. The grpc client stack will call the get_metadata method of the plugin for every call in scope for the credentials created from it.

Fields

get_metadata: Option<unsafe extern "C" fn(state: *mut c_void, context: grpc_auth_metadata_context, cb: grpc_credentials_plugin_metadata_cb, user_data: *mut c_void, creds_md: *mut grpc_metadata, num_creds_md: *mut usize, status: *mut Type, error_details: *mut *const c_char) -> c_int>

The implementation of this method has to be non-blocking, but can be performed synchronously or asynchronously.

If processing occurs synchronously, returns non-zero and populates creds_md, num_creds_md, status, and error_details. In this case, the caller takes ownership of the entries in creds_md and of error_details. Note that if the plugin needs to return more than GRPC_METADATA_CREDENTIALS_PLUGIN_SYNC_MAX entries in creds_md, it must return asynchronously.

If processing occurs asynchronously, returns zero and invokes \a cb when processing is completed. \a user_data will be passed as the first parameter of the callback. NOTE: \a cb MUST be invoked in a different thread, not from the thread in which \a get_metadata() is invoked.

\a context is the information that can be used by the plugin to create auth metadata.

debug_string: Option<unsafe extern "C" fn(state: *mut c_void) -> *mut c_char>

Implements debug string of the given plugin. This method returns an allocated string that the caller needs to free using gpr_free()

destroy: Option<unsafe extern "C" fn(state: *mut c_void)>

Destroys the plugin state.

state: *mut c_void

State that will be set as the first parameter of the methods above.

type_: *const c_char

Type of credentials that this plugin is implementing.

Trait Implementations

impl Clone for grpc_metadata_credentials_plugin[src]

fn clone(&self) -> grpc_metadata_credentials_plugin[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for grpc_metadata_credentials_plugin[src]

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

Formats the value using the given formatter. Read more

impl Copy for grpc_metadata_credentials_plugin[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

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]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.